| 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 import("//chrome/common/features.gni") | 8 import("//chrome/common/features.gni") |
| 9 | 9 |
| 10 gypi_values = exec_script("//build/gypi_to_gn.py", | 10 gypi_values = exec_script("//build/gypi_to_gn.py", |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 "//chrome") | 315 "//chrome") |
| 316 } | 316 } |
| 317 } else { | 317 } else { |
| 318 # !toolkit_views | 318 # !toolkit_views |
| 319 if (!is_ios) { | 319 if (!is_ios) { |
| 320 deps -= [ "//chrome/browser/ui/views" ] | 320 deps -= [ "//chrome/browser/ui/views" ] |
| 321 } | 321 } |
| 322 } | 322 } |
| 323 if (use_aura && !use_ozone && is_desktop_linux) { | 323 if (use_aura && !use_ozone && is_desktop_linux) { |
| 324 deps += [ | 324 deps += [ |
| 325 "//build/linux:gio", | 325 "//build/linux/libgio", |
| 326 | 326 |
| 327 # gtk2 is the only component that can interact with gtk2 in our new | 327 # gtk2 is the only component that can interact with gtk2 in our new |
| 328 # world. | 328 # world. |
| 329 "//chrome/browser/ui/libgtk2ui", | 329 "//chrome/browser/ui/libgtk2ui", |
| 330 ] | 330 ] |
| 331 } | 331 } |
| 332 if (is_win || is_mac || is_desktop_linux) { | 332 if (is_win || is_mac || is_desktop_linux) { |
| 333 sources += rebase_path(gypi_values.chrome_browser_ui_desktop_sources, | 333 sources += rebase_path(gypi_values.chrome_browser_ui_desktop_sources, |
| 334 ".", | 334 ".", |
| 335 "//chrome") | 335 "//chrome") |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 "//chrome/browser", | 673 "//chrome/browser", |
| 674 "//content/public/browser", | 674 "//content/public/browser", |
| 675 "//content/public/common", | 675 "//content/public/common", |
| 676 "//content/test:test_support", | 676 "//content/test:test_support", |
| 677 "//net:test_support", | 677 "//net:test_support", |
| 678 "//skia", | 678 "//skia", |
| 679 "//testing/gtest", | 679 "//testing/gtest", |
| 680 "//ui/base", | 680 "//ui/base", |
| 681 ] | 681 ] |
| 682 } | 682 } |
| OLD | NEW |