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 import("//chrome/common/features.gni") | 8 import("//chrome/common/features.gni") |
9 | 9 |
10 gypi_values = exec_script("//build/gypi_to_gn.py", | 10 gypi_values = exec_script("//build/gypi_to_gn.py", |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 "//components/invalidation/impl", | 76 "//components/invalidation/impl", |
77 "//components/keyed_service/content", | 77 "//components/keyed_service/content", |
78 "//components/keyed_service/core", | 78 "//components/keyed_service/core", |
79 "//components/metrics:profiler", | 79 "//components/metrics:profiler", |
80 "//components/mime_util", | 80 "//components/mime_util", |
81 "//components/omnibox/browser", | 81 "//components/omnibox/browser", |
82 "//components/onc", | 82 "//components/onc", |
83 "//components/password_manager/content/browser", | 83 "//components/password_manager/content/browser", |
84 "//components/password_manager/core/browser", | 84 "//components/password_manager/core/browser", |
85 "//components/pdf/browser", | 85 "//components/pdf/browser", |
| 86 "//components/policy", |
86 "//components/pref_registry", | 87 "//components/pref_registry", |
87 "//components/proximity_auth", | 88 "//components/proximity_auth", |
88 "//components/proxy_config", | 89 "//components/proxy_config", |
89 "//components/query_parser", | 90 "//components/query_parser", |
90 "//components/rappor", | 91 "//components/rappor", |
91 "//components/renderer_context_menu", | 92 "//components/renderer_context_menu", |
92 "//components/resources", | 93 "//components/resources", |
93 "//components/search", | 94 "//components/search", |
94 "//components/search_engines", | 95 "//components/search_engines", |
95 "//components/security_interstitials/core", | 96 "//components/security_interstitials/core", |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 | 213 |
213 if (enable_basic_printing || enable_print_preview) { | 214 if (enable_basic_printing || enable_print_preview) { |
214 deps += [ "//printing" ] | 215 deps += [ "//printing" ] |
215 } | 216 } |
216 | 217 |
217 if (enable_nacl) { | 218 if (enable_nacl) { |
218 sources += | 219 sources += |
219 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome") | 220 rebase_path(gypi_values.chrome_browser_ui_nacl_sources, ".", "//chrome") |
220 deps += [ "//native_client/src/trusted/service_runtime:sel" ] | 221 deps += [ "//native_client/src/trusted/service_runtime:sel" ] |
221 } | 222 } |
222 if (enable_configuration_policy) { | |
223 sources += rebase_path(gypi_values.chrome_browser_ui_policy_sources, | |
224 ".", | |
225 "//chrome") | |
226 deps += [ "//components/policy" ] | |
227 } | |
228 if (enable_plugins) { | 223 if (enable_plugins) { |
229 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources, | 224 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources, |
230 ".", | 225 ".", |
231 "//chrome") | 226 "//chrome") |
232 deps += [ "//ppapi/proxy:ipc" ] | 227 deps += [ "//ppapi/proxy:ipc" ] |
233 } | 228 } |
234 if (safe_browsing_mode == 1) { | 229 if (safe_browsing_mode == 1) { |
235 deps += [ | 230 deps += [ |
236 "//chrome/browser/safe_browsing:chunk_proto", | 231 "//chrome/browser/safe_browsing:chunk_proto", |
237 "//chrome/common/safe_browsing:proto", | 232 "//chrome/common/safe_browsing:proto", |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
669 "//chrome/browser", | 664 "//chrome/browser", |
670 "//content/public/browser", | 665 "//content/public/browser", |
671 "//content/public/common", | 666 "//content/public/common", |
672 "//content/test:test_support", | 667 "//content/test:test_support", |
673 "//net:test_support", | 668 "//net:test_support", |
674 "//skia", | 669 "//skia", |
675 "//testing/gtest", | 670 "//testing/gtest", |
676 "//ui/base", | 671 "//ui/base", |
677 ] | 672 ] |
678 } | 673 } |
OLD | NEW |