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 assert(enable_extensions) | 9 assert(enable_extensions) |
10 | 10 |
(...skipping 27 matching lines...) Expand all Loading... |
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/net", | 44 "//chrome/common/net", |
45 "//chrome/common/safe_browsing:proto", | 45 "//chrome/common/safe_browsing:proto", |
46 "//chrome/installer/util", | 46 "//chrome/installer/util", |
47 "//components/copresence", | 47 "//components/copresence", |
48 "//components/history/core/browser:proto", | |
49 "//components/onc", | 48 "//components/onc", |
50 "//components/proximity_auth", | 49 "//components/proximity_auth", |
51 "//components/strings", | 50 "//components/strings", |
52 "//components/update_client", | 51 "//components/update_client", |
53 "//components/url_matcher", | 52 "//components/url_matcher", |
54 "//content/app/resources", | 53 "//content/app/resources", |
55 "//content/public/common", | 54 "//content/public/common", |
56 "//crypto", | 55 "//crypto", |
57 "//device/bluetooth", | 56 "//device/bluetooth", |
58 "//device/hid", | 57 "//device/hid", |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 "//chrome") | 200 "//chrome") |
202 } | 201 } |
203 | 202 |
204 if (is_chromeos && use_ozone) { | 203 if (is_chromeos && use_ozone) { |
205 sources -= [ "global_shortcut_listener_chromeos.cc" ] | 204 sources -= [ "global_shortcut_listener_chromeos.cc" ] |
206 } | 205 } |
207 if (!use_ozone) { | 206 if (!use_ozone) { |
208 sources -= [ "global_shortcut_listener_ozone.cc" ] | 207 sources -= [ "global_shortcut_listener_ozone.cc" ] |
209 } | 208 } |
210 } | 209 } |
OLD | NEW |