| 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 21 matching lines...) Expand all Loading... |
| 32 deps = [ | 32 deps = [ |
| 33 "//chrome:extra_resources", | 33 "//chrome:extra_resources", |
| 34 "//chrome:resources", | 34 "//chrome:resources", |
| 35 "//chrome:strings", | 35 "//chrome:strings", |
| 36 "//chrome/app/resources:platform_locale_settings", | 36 "//chrome/app/resources:platform_locale_settings", |
| 37 "//chrome/app/theme:theme_resources", | 37 "//chrome/app/theme:theme_resources", |
| 38 "//chrome/browser/devtools", | 38 "//chrome/browser/devtools", |
| 39 "//chrome/browser/history:in_memory_url_index_cache_proto", | 39 "//chrome/browser/history:in_memory_url_index_cache_proto", |
| 40 "//chrome/common", | 40 "//chrome/common", |
| 41 "//chrome/common/extensions/api", | 41 "//chrome/common/extensions/api", |
| 42 "//chrome/common/extensions/api:api_registration", |
| 42 "//chrome/common/net", | 43 "//chrome/common/net", |
| 43 "//chrome/common/safe_browsing:proto", | 44 "//chrome/common/safe_browsing:proto", |
| 44 "//chrome/installer/util", | 45 "//chrome/installer/util", |
| 45 "//components/copresence", | 46 "//components/copresence", |
| 46 "//components/omaha_query_params", | 47 "//components/omaha_query_params", |
| 47 "//components/onc", | 48 "//components/onc", |
| 48 "//components/strings", | 49 "//components/strings", |
| 49 "//components/url_matcher", | 50 "//components/url_matcher", |
| 50 "//content/app/resources", | 51 "//content/app/resources", |
| 51 "//content/public/browser", | 52 "//content/public/browser", |
| 52 "//content/public/common", | 53 "//content/public/common", |
| 53 "//crypto", | 54 "//crypto", |
| 54 "//device/bluetooth", | 55 "//device/bluetooth", |
| 55 "//device/hid", | 56 "//device/hid", |
| 56 "//extensions/browser", | 57 "//extensions/browser", |
| 57 "//extensions/common/api", | 58 "//extensions/common/api", |
| 59 "//extensions/common/api:api_registration", |
| 58 "//extensions/strings", | 60 "//extensions/strings", |
| 59 "//net", | 61 "//net", |
| 60 "//skia", | 62 "//skia", |
| 61 "//sync", | 63 "//sync", |
| 62 "//third_party/WebKit/public:resources", | 64 "//third_party/WebKit/public:resources", |
| 63 "//third_party/cacheinvalidation", | 65 "//third_party/cacheinvalidation", |
| 64 "//third_party/icu", | 66 "//third_party/icu", |
| 65 "//third_party/leveldatabase", | 67 "//third_party/leveldatabase", |
| 66 "//third_party/re2", | 68 "//third_party/re2", |
| 67 "//ui/accessibility:ax_gen", | 69 "//ui/accessibility:ax_gen", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 gypi_values.chrome_browser_extensions_app_list_sources, | 204 gypi_values.chrome_browser_extensions_app_list_sources, |
| 203 ".", "//chrome") | 205 ".", "//chrome") |
| 204 } | 206 } |
| 205 | 207 |
| 206 if (!use_ozone) { | 208 if (!use_ozone) { |
| 207 sources -= [ | 209 sources -= [ |
| 208 "global_shortcut_listener_ozone.cc", | 210 "global_shortcut_listener_ozone.cc", |
| 209 ] | 211 ] |
| 210 } | 212 } |
| 211 } | 213 } |
| OLD | NEW |