OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 | 8 |
9 gypi_values = exec_script( | 9 gypi_values = exec_script( |
10 "//build/gypi_to_gn.py", | 10 "//build/gypi_to_gn.py", |
(...skipping 29 matching lines...) Expand all Loading... |
40 "//chrome/common", | 40 "//chrome/common", |
41 "//chrome/common/extensions/api", | 41 "//chrome/common/extensions/api", |
42 "//chrome/common/net", | 42 "//chrome/common/net", |
43 "//chrome/common/safe_browsing:proto", | 43 "//chrome/common/safe_browsing:proto", |
44 "//chrome/installer/util", | 44 "//chrome/installer/util", |
45 "//components/copresence", | 45 "//components/copresence", |
46 "//components/omaha_query_params", | 46 "//components/omaha_query_params", |
47 "//components/onc", | 47 "//components/onc", |
48 "//components/strings", | 48 "//components/strings", |
49 "//components/url_matcher", | 49 "//components/url_matcher", |
| 50 "//content/app/resources", |
50 "//content/public/browser", | 51 "//content/public/browser", |
51 "//content/public/common", | 52 "//content/public/common", |
52 "//crypto", | 53 "//crypto", |
53 "//device/bluetooth", | 54 "//device/bluetooth", |
54 "//device/hid", | 55 "//device/hid", |
55 "//extensions/browser", | 56 "//extensions/browser", |
56 "//extensions/common/api", | 57 "//extensions/common/api", |
57 "//extensions/strings", | 58 "//extensions/strings", |
58 "//net", | 59 "//net", |
59 "//skia", | 60 "//skia", |
60 "//sync", | 61 "//sync", |
61 "//third_party/WebKit/public:resources", | 62 "//third_party/WebKit/public:resources", |
62 "//third_party/cacheinvalidation", | 63 "//third_party/cacheinvalidation", |
63 "//third_party/icu", | 64 "//third_party/icu", |
64 "//third_party/leveldatabase", | 65 "//third_party/leveldatabase", |
65 "//third_party/re2", | 66 "//third_party/re2", |
66 "//ui/accessibility:ax_gen", | 67 "//ui/accessibility:ax_gen", |
67 "//ui/base", | 68 "//ui/base", |
68 "//ui/gfx", | 69 "//ui/gfx", |
69 "//ui/gfx/geometry", | 70 "//ui/gfx/geometry", |
70 "//ui/resources", | 71 "//ui/resources", |
71 "//ui/strings", | 72 "//ui/strings", |
72 "//url", | 73 "//url", |
73 "//webkit/browser:storage", | 74 "//webkit/browser:storage", |
74 "//webkit/common:storage", | 75 "//webkit/common:storage", |
75 "//webkit/glue/resources", | |
76 #"../third_party/webrtc/modules/modules.gyp:desktop_capture", TODO(GYP) | 76 #"../third_party/webrtc/modules/modules.gyp:desktop_capture", TODO(GYP) |
77 ] | 77 ] |
78 | 78 |
79 forward_dependent_configs_from = [ | 79 forward_dependent_configs_from = [ |
80 "//chrome/common/extensions/api", | 80 "//chrome/common/extensions/api", |
81 "//content/public/browser", | 81 "//content/public/browser", |
82 ] | 82 ] |
83 | 83 |
84 if (is_chromeos) { | 84 if (is_chromeos) { |
85 sources += rebase_path( | 85 sources += rebase_path( |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 gypi_values.chrome_browser_extensions_app_list_sources, | 202 gypi_values.chrome_browser_extensions_app_list_sources, |
203 ".", "//chrome") | 203 ".", "//chrome") |
204 } | 204 } |
205 | 205 |
206 if (!use_ozone) { | 206 if (!use_ozone) { |
207 sources -= [ | 207 sources -= [ |
208 "global_shortcut_listener_ozone.cc", | 208 "global_shortcut_listener_ozone.cc", |
209 ] | 209 ] |
210 } | 210 } |
211 } | 211 } |
OLD | NEW |