| 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 if (enable_plugins) { | 169 if (enable_plugins) { |
| 170 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources, | 170 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources, |
| 171 ".", | 171 ".", |
| 172 "//chrome") | 172 "//chrome") |
| 173 deps += [ "//ppapi/proxy:ipc" ] | 173 deps += [ "//ppapi/proxy:ipc" ] |
| 174 } | 174 } |
| 175 if (safe_browsing_mode == 1) { | 175 if (safe_browsing_mode == 1) { |
| 176 deps += [ | 176 deps += [ |
| 177 "//chrome/browser/safe_browsing:chunk_proto", | 177 "//chrome/browser/safe_browsing:chunk_proto", |
| 178 "//chrome/common/safe_browsing:proto", | 178 "//chrome/common/safe_browsing:proto", |
| 179 "//chrome/browser/safe_browsing:report_proto", | |
| 180 ] | 179 ] |
| 181 } | 180 } |
| 182 | 181 |
| 183 if (is_chromeos && !is_official_build) { | 182 if (is_chromeos && !is_official_build) { |
| 184 sources += | 183 sources += |
| 185 rebase_path(gypi_values.chrome_browser_ui_chromeos_non_official_sources, | 184 rebase_path(gypi_values.chrome_browser_ui_chromeos_non_official_sources, |
| 186 ".", | 185 ".", |
| 187 "//chrome") | 186 "//chrome") |
| 188 } | 187 } |
| 189 | 188 |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 "//chrome/browser", | 584 "//chrome/browser", |
| 586 "//content/public/browser", | 585 "//content/public/browser", |
| 587 "//content/public/common", | 586 "//content/public/common", |
| 588 "//content/test:test_support", | 587 "//content/test:test_support", |
| 589 "//net:test_support", | 588 "//net:test_support", |
| 590 "//skia", | 589 "//skia", |
| 591 "//testing/gtest", | 590 "//testing/gtest", |
| 592 "//ui/base", | 591 "//ui/base", |
| 593 ] | 592 ] |
| 594 } | 593 } |
| OLD | NEW |