| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 ".", "//chrome") | 198 ".", "//chrome") |
| 199 if (!is_chromeos) { | 199 if (!is_chromeos) { |
| 200 sources += rebase_path( | 200 sources += rebase_path( |
| 201 gypi_values.chrome_browser_ui_views_non_chromeos_sources, | 201 gypi_values.chrome_browser_ui_views_non_chromeos_sources, |
| 202 ".", "//chrome") | 202 ".", "//chrome") |
| 203 } | 203 } |
| 204 if (!is_mac) { | 204 if (!is_mac) { |
| 205 sources += rebase_path( | 205 sources += rebase_path( |
| 206 gypi_values.chrome_browser_ui_views_non_mac_sources, | 206 gypi_values.chrome_browser_ui_views_non_mac_sources, |
| 207 ".", "//chrome") | 207 ".", "//chrome") |
| 208 deps += [ "//components/native_app_window" ] |
| 208 } | 209 } |
| 209 if (use_ash) { | 210 if (use_ash) { |
| 210 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, | 211 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, |
| 211 ".", "//chrome") | 212 ".", "//chrome") |
| 212 } | 213 } |
| 213 } | 214 } |
| 214 if (use_aura && !use_ozone && is_desktop_linux) { | 215 if (use_aura && !use_ozone && is_desktop_linux) { |
| 215 deps += [ | 216 deps += [ |
| 216 "//build/config/linux:gio", | 217 "//build/config/linux:gio", |
| 217 # gtk2 is the only component that can interact with gtk2 in our new | 218 # gtk2 is the only component that can interact with gtk2 in our new |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 "//chrome/browser", | 453 "//chrome/browser", |
| 453 "//content/public/browser", | 454 "//content/public/browser", |
| 454 "//content/public/common", | 455 "//content/public/common", |
| 455 "//content/test:test_support", | 456 "//content/test:test_support", |
| 456 "//net:test_support", | 457 "//net:test_support", |
| 457 "//skia", | 458 "//skia", |
| 458 "//testing/gtest", | 459 "//testing/gtest", |
| 459 "//ui/base", | 460 "//ui/base", |
| 460 ] | 461 ] |
| 461 } | 462 } |
| OLD | NEW |