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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 } | 233 } |
234 } | 234 } |
235 if (use_ash) { | 235 if (use_ash) { |
236 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, | 236 sources += rebase_path(gypi_values.chrome_browser_ui_ash_views_sources, |
237 ".", | 237 ".", |
238 "//chrome") | 238 "//chrome") |
239 } | 239 } |
240 } | 240 } |
241 if (use_aura && !use_ozone && is_desktop_linux) { | 241 if (use_aura && !use_ozone && is_desktop_linux) { |
242 deps += [ | 242 deps += [ |
243 "//build/config/linux:gio", | 243 "//build/linux:gio", |
244 | 244 |
245 # gtk2 is the only component that can interact with gtk2 in our new | 245 # gtk2 is the only component that can interact with gtk2 in our new |
246 # world. | 246 # world. |
247 "//chrome/browser/ui/libgtk2ui", | 247 "//chrome/browser/ui/libgtk2ui", |
248 ] | 248 ] |
249 } | 249 } |
250 if (is_win || is_mac || is_desktop_linux) { | 250 if (is_win || is_mac || is_desktop_linux) { |
251 sources += rebase_path(gypi_values.chrome_browser_ui_desktop_sources, | 251 sources += rebase_path(gypi_values.chrome_browser_ui_desktop_sources, |
252 ".", | 252 ".", |
253 "//chrome") | 253 "//chrome") |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 "//chrome/browser", | 530 "//chrome/browser", |
531 "//content/public/browser", | 531 "//content/public/browser", |
532 "//content/public/common", | 532 "//content/public/common", |
533 "//content/test:test_support", | 533 "//content/test:test_support", |
534 "//net:test_support", | 534 "//net:test_support", |
535 "//skia", | 535 "//skia", |
536 "//testing/gtest", | 536 "//testing/gtest", |
537 "//ui/base", | 537 "//ui/base", |
538 ] | 538 ] |
539 } | 539 } |
OLD | NEW |