1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("app_window") {
sources = [
"app_delegate.h",
"app_web_contents_helper.cc",
"app_web_contents_helper.h",
"app_window.cc",
"app_window.h",
"app_window_client.cc",
"app_window_client.h",
"app_window_contents.cc",
"app_window_contents.h",
"app_window_geometry_cache.cc",
"app_window_geometry_cache.h",
"app_window_registry.cc",
"app_window_registry.h",
"native_app_window.h",
"size_constraints.cc",
"size_constraints.h",
]
configs += [
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
"//build/config/compiler:no_size_t_to_int_warning",
]
deps = [
"//content/public/common",
"//extensions:extensions_browser_resources",
"//extensions/strings",
]
}
|