| 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 28 matching lines...) Expand all Loading... |
| 39 "//chrome:extra_resources", | 39 "//chrome:extra_resources", |
| 40 "//chrome:resources", | 40 "//chrome:resources", |
| 41 "//chrome:strings", | 41 "//chrome:strings", |
| 42 "//chrome/app/resources:platform_locale_settings", | 42 "//chrome/app/resources:platform_locale_settings", |
| 43 "//chrome/app/theme:theme_resources", | 43 "//chrome/app/theme:theme_resources", |
| 44 "//chrome/browser/devtools", | 44 "//chrome/browser/devtools", |
| 45 "//chrome/common", | 45 "//chrome/common", |
| 46 "//chrome/common/extensions/api:api_registration", | 46 "//chrome/common/extensions/api:api_registration", |
| 47 "//chrome/common/safe_browsing:proto", | 47 "//chrome/common/safe_browsing:proto", |
| 48 "//chrome/installer/util:with_no_strings", | 48 "//chrome/installer/util:with_no_strings", |
| 49 "//components/copresence", | |
| 50 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | 49 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
| 51 "//components/dom_distiller/core", | 50 "//components/dom_distiller/core", |
| 52 "//components/onc", | 51 "//components/onc", |
| 53 "//components/policy", | 52 "//components/policy", |
| 54 "//components/proximity_auth", | 53 "//components/proximity_auth", |
| 55 "//components/resources", | 54 "//components/resources", |
| 56 "//components/strings", | 55 "//components/strings", |
| 57 "//components/update_client", | 56 "//components/update_client", |
| 58 "//components/url_matcher", | 57 "//components/url_matcher", |
| 59 "//content/app/resources", | 58 "//content/app/resources", |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 "//chrome") | 224 "//chrome") |
| 226 } | 225 } |
| 227 | 226 |
| 228 if (is_chromeos && use_ozone) { | 227 if (is_chromeos && use_ozone) { |
| 229 sources -= [ "global_shortcut_listener_chromeos.cc" ] | 228 sources -= [ "global_shortcut_listener_chromeos.cc" ] |
| 230 } | 229 } |
| 231 if (!use_ozone) { | 230 if (!use_ozone) { |
| 232 sources -= [ "global_shortcut_listener_ozone.cc" ] | 231 sources -= [ "global_shortcut_listener_ozone.cc" ] |
| 233 } | 232 } |
| 234 } | 233 } |
| OLD | NEW |