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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 | 7 |
8 assert(enable_extensions) | 8 assert(enable_extensions) |
9 | 9 |
10 gypi_values = | 10 gypi_values = |
(...skipping 26 matching lines...) Expand all Loading... |
37 "//chrome:resources", | 37 "//chrome:resources", |
38 "//chrome:strings", | 38 "//chrome:strings", |
39 "//chrome/app/resources:platform_locale_settings", | 39 "//chrome/app/resources:platform_locale_settings", |
40 "//chrome/app/theme:theme_resources", | 40 "//chrome/app/theme:theme_resources", |
41 "//chrome/browser/devtools", | 41 "//chrome/browser/devtools", |
42 "//chrome/common", | 42 "//chrome/common", |
43 "//chrome/common/extensions/api:api_registration", | 43 "//chrome/common/extensions/api:api_registration", |
44 "//chrome/common/safe_browsing:proto", | 44 "//chrome/common/safe_browsing:proto", |
45 "//chrome/installer/util", | 45 "//chrome/installer/util", |
46 "//components/copresence", | 46 "//components/copresence", |
| 47 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
47 "//components/dom_distiller/core", | 48 "//components/dom_distiller/core", |
48 "//components/onc", | 49 "//components/onc", |
49 "//components/proximity_auth", | 50 "//components/proximity_auth", |
50 "//components/strings", | 51 "//components/strings", |
51 "//components/update_client", | 52 "//components/update_client", |
52 "//components/url_matcher", | 53 "//components/url_matcher", |
53 "//content/app/resources", | 54 "//content/app/resources", |
54 "//content/public/common", | 55 "//content/public/common", |
55 "//crypto", | 56 "//crypto", |
56 "//device/bluetooth", | 57 "//device/bluetooth", |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 "//chrome") | 207 "//chrome") |
207 } | 208 } |
208 | 209 |
209 if (is_chromeos && use_ozone) { | 210 if (is_chromeos && use_ozone) { |
210 sources -= [ "global_shortcut_listener_chromeos.cc" ] | 211 sources -= [ "global_shortcut_listener_chromeos.cc" ] |
211 } | 212 } |
212 if (!use_ozone) { | 213 if (!use_ozone) { |
213 sources -= [ "global_shortcut_listener_ozone.cc" ] | 214 sources -= [ "global_shortcut_listener_ozone.cc" ] |
214 } | 215 } |
215 } | 216 } |
OLD | NEW |