| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 configs += [ "//printing:cups" ] | 184 configs += [ "//printing:cups" ] |
| 185 } | 185 } |
| 186 if (use_ash) { | 186 if (use_ash) { |
| 187 sources += rebase_path(gypi_values.chrome_browser_ui_ash_sources, | 187 sources += rebase_path(gypi_values.chrome_browser_ui_ash_sources, |
| 188 ".", "//chrome") | 188 ".", "//chrome") |
| 189 deps += [ | 189 deps += [ |
| 190 "//ash", | 190 "//ash", |
| 191 "//ash:ash_with_content", | 191 "//ash:ash_with_content", |
| 192 "//ash/strings", | 192 "//ash/strings", |
| 193 "//components/user_manager", | 193 "//components/user_manager", |
| 194 "//components/screenshot_taker", |
| 194 ] | 195 ] |
| 195 if (!is_chromeos) { | 196 if (!is_chromeos) { |
| 196 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos, | 197 sources += rebase_path(gypi_values.chrome_browser_ui_ash_non_chromeos, |
| 197 ".", "//chrome") | 198 ".", "//chrome") |
| 198 } | 199 } |
| 199 } else { # Not ash. | 200 } else { # Not ash. |
| 200 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, | 201 sources += rebase_path(gypi_values.chrome_browser_ui_non_ash_sources, |
| 201 ".", "//chrome") | 202 ".", "//chrome") |
| 202 } | 203 } |
| 203 if (use_athena) { | 204 if (use_athena) { |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 "//chrome/browser", | 488 "//chrome/browser", |
| 488 "//content/public/browser", | 489 "//content/public/browser", |
| 489 "//content/public/common", | 490 "//content/public/common", |
| 490 "//content/test:test_support", | 491 "//content/test:test_support", |
| 491 "//net:test_support", | 492 "//net:test_support", |
| 492 "//skia", | 493 "//skia", |
| 493 "//testing/gtest", | 494 "//testing/gtest", |
| 494 "//ui/base", | 495 "//ui/base", |
| 495 ] | 496 ] |
| 496 } | 497 } |
| OLD | NEW |