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("//build/gypi_to_gn.py", | 9 gypi_values = exec_script("//build/gypi_to_gn.py", |
10 [ rebase_path("../../chrome_browser_ui.gypi") ], | 10 [ rebase_path("../../chrome_browser_ui.gypi") ], |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 if (enable_configuration_policy) { | 168 if (enable_configuration_policy) { |
169 sources += rebase_path(gypi_values.chrome_browser_ui_policy_sources, | 169 sources += rebase_path(gypi_values.chrome_browser_ui_policy_sources, |
170 ".", | 170 ".", |
171 "//chrome") | 171 "//chrome") |
172 deps += [ "//components/policy" ] | 172 deps += [ "//components/policy" ] |
173 } | 173 } |
174 if (enable_plugins) { | 174 if (enable_plugins) { |
175 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources, | 175 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources, |
176 ".", | 176 ".", |
177 "//chrome") | 177 "//chrome") |
178 deps += [ "//ppapi:ppapi_ipc" ] | 178 deps += [ "//ppapi/proxy:ipc" ] |
179 } | 179 } |
180 if (safe_browsing_mode == 1) { | 180 if (safe_browsing_mode == 1) { |
181 defines += [ "FULL_SAFE_BROWSING" ] | 181 defines += [ "FULL_SAFE_BROWSING" ] |
182 deps += [ | 182 deps += [ |
183 "//chrome/browser/safe_browsing:chunk_proto", | 183 "//chrome/browser/safe_browsing:chunk_proto", |
184 "//chrome/common/safe_browsing:proto", | 184 "//chrome/common/safe_browsing:proto", |
185 "//chrome/browser/safe_browsing:report_proto", | 185 "//chrome/browser/safe_browsing:report_proto", |
186 ] | 186 ] |
187 } | 187 } |
188 if (is_chromeos) { | 188 if (is_chromeos) { |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
518 "//chrome/browser", | 518 "//chrome/browser", |
519 "//content/public/browser", | 519 "//content/public/browser", |
520 "//content/public/common", | 520 "//content/public/common", |
521 "//content/test:test_support", | 521 "//content/test:test_support", |
522 "//net:test_support", | 522 "//net:test_support", |
523 "//skia", | 523 "//skia", |
524 "//testing/gtest", | 524 "//testing/gtest", |
525 "//ui/base", | 525 "//ui/base", |
526 ] | 526 ] |
527 } | 527 } |
OLD | NEW |