| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "//chrome/common/extensions/api:extensions_features", | 47 "//chrome/common/extensions/api:extensions_features", |
| 48 "//chrome/common/safe_browsing:proto", | 48 "//chrome/common/safe_browsing:proto", |
| 49 "//chrome/installer/util:with_no_strings", | 49 "//chrome/installer/util:with_no_strings", |
| 50 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | 50 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
| 51 "//components/dom_distiller/core", | 51 "//components/dom_distiller/core", |
| 52 "//components/onc", | 52 "//components/onc", |
| 53 "//components/policy", | 53 "//components/policy", |
| 54 "//components/proximity_auth", | 54 "//components/proximity_auth", |
| 55 "//components/resources", | 55 "//components/resources", |
| 56 "//components/strings", | 56 "//components/strings", |
| 57 "//components/sync", |
| 57 "//components/update_client", | 58 "//components/update_client", |
| 58 "//components/url_matcher", | 59 "//components/url_matcher", |
| 59 "//content/app/resources", | 60 "//content/app/resources", |
| 60 "//content/public/common", | 61 "//content/public/common", |
| 61 "//crypto", | 62 "//crypto", |
| 62 "//device/bluetooth", | 63 "//device/bluetooth", |
| 63 "//device/hid", | 64 "//device/hid", |
| 64 "//extensions:extensions_resources", | 65 "//extensions:extensions_resources", |
| 65 "//extensions/browser", | 66 "//extensions/browser", |
| 66 "//extensions/common/api", | 67 "//extensions/common/api", |
| 67 "//extensions/common/api:api_registration", | 68 "//extensions/common/api:api_registration", |
| 68 "//extensions/strings", | 69 "//extensions/strings", |
| 69 "//net", | 70 "//net", |
| 70 "//skia", | 71 "//skia", |
| 71 "//storage/browser", | 72 "//storage/browser", |
| 72 "//storage/common", | 73 "//storage/common", |
| 73 "//sync", | |
| 74 "//third_party/WebKit/public:image_resources", | 74 "//third_party/WebKit/public:image_resources", |
| 75 "//third_party/WebKit/public:resources", | 75 "//third_party/WebKit/public:resources", |
| 76 "//third_party/cacheinvalidation", | 76 "//third_party/cacheinvalidation", |
| 77 "//third_party/icu", | 77 "//third_party/icu", |
| 78 "//third_party/leveldatabase", | 78 "//third_party/leveldatabase", |
| 79 "//third_party/libaddressinput:util", | 79 "//third_party/libaddressinput:util", |
| 80 "//third_party/re2", | 80 "//third_party/re2", |
| 81 "//third_party/webrtc/modules/desktop_capture", | 81 "//third_party/webrtc/modules/desktop_capture", |
| 82 "//ui/accessibility:ax_gen", | 82 "//ui/accessibility:ax_gen", |
| 83 "//ui/base", | 83 "//ui/base", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 "//chrome") | 225 "//chrome") |
| 226 } | 226 } |
| 227 | 227 |
| 228 if (is_chromeos && use_ozone) { | 228 if (is_chromeos && use_ozone) { |
| 229 sources -= [ "global_shortcut_listener_chromeos.cc" ] | 229 sources -= [ "global_shortcut_listener_chromeos.cc" ] |
| 230 } | 230 } |
| 231 if (!use_ozone) { | 231 if (!use_ozone) { |
| 232 sources -= [ "global_shortcut_listener_ozone.cc" ] | 232 sources -= [ "global_shortcut_listener_ozone.cc" ] |
| 233 } | 233 } |
| 234 } | 234 } |
| OLD | NEW |