| 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 ".", "//chrome") | 214 ".", "//chrome") |
| 215 if (!is_chromeos) { | 215 if (!is_chromeos) { |
| 216 sources += rebase_path( | 216 sources += rebase_path( |
| 217 gypi_values.chrome_browser_ui_views_non_chromeos_sources, | 217 gypi_values.chrome_browser_ui_views_non_chromeos_sources, |
| 218 ".", "//chrome") | 218 ".", "//chrome") |
| 219 } | 219 } |
| 220 if (!is_mac) { | 220 if (!is_mac) { |
| 221 sources += rebase_path( | 221 sources += rebase_path( |
| 222 gypi_values.chrome_browser_ui_views_non_mac_sources, | 222 gypi_values.chrome_browser_ui_views_non_mac_sources, |
| 223 ".", "//chrome") | 223 ".", "//chrome") |
| 224 deps += [ "//extensions/components/native_app_window" ] | 224 deps += [ |
| 225 "//components/constrained_window", |
| 226 "//extensions/components/native_app_window", |
| 227 ] |
| 225 } | 228 } |
| 226 if (use_ash) { | 229 if (use_ash) { |
| 227 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, | 230 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, |
| 228 ".", "//chrome") | 231 ".", "//chrome") |
| 229 } | 232 } |
| 230 } | 233 } |
| 231 if (use_aura && !use_ozone && is_desktop_linux) { | 234 if (use_aura && !use_ozone && is_desktop_linux) { |
| 232 deps += [ | 235 deps += [ |
| 233 "//build/config/linux:gio", | 236 "//build/config/linux:gio", |
| 234 # gtk2 is the only component that can interact with gtk2 in our new | 237 # gtk2 is the only component that can interact with gtk2 in our new |
| 235 # world. | 238 # world. |
| 236 "//chrome/browser/ui/libgtk2ui", | 239 "//chrome/browser/ui/libgtk2ui", |
| 237 ] | 240 ] |
| 238 } | 241 } |
| 239 if (is_win || is_mac || is_desktop_linux) { | 242 if (is_win || is_mac || is_desktop_linux) { |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 "//chrome/browser", | 477 "//chrome/browser", |
| 475 "//content/public/browser", | 478 "//content/public/browser", |
| 476 "//content/public/common", | 479 "//content/public/common", |
| 477 "//content/test:test_support", | 480 "//content/test:test_support", |
| 478 "//net:test_support", | 481 "//net:test_support", |
| 479 "//skia", | 482 "//skia", |
| 480 "//testing/gtest", | 483 "//testing/gtest", |
| 481 "//ui/base", | 484 "//ui/base", |
| 482 ] | 485 ] |
| 483 } | 486 } |
| OLD | NEW |