| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 ".", "//chrome") | 363 ".", "//chrome") |
| 364 configs += [ "//build/config/linux:udev" ] | 364 configs += [ "//build/config/linux:udev" ] |
| 365 if (use_aura) { | 365 if (use_aura) { |
| 366 configs += [ "//build/config/linux:fontconfig" ] | 366 configs += [ "//build/config/linux:fontconfig" ] |
| 367 deps += [ "//dbus" ] | 367 deps += [ "//dbus" ] |
| 368 } | 368 } |
| 369 if (use_x11) { | 369 if (use_x11) { |
| 370 sources += rebase_path(gypi_values.chrome_browser_ui_x11_sources, | 370 sources += rebase_path(gypi_values.chrome_browser_ui_x11_sources, |
| 371 ".", "//chrome") | 371 ".", "//chrome") |
| 372 configs += [ "//build/config/linux:x11" ] | 372 configs += [ "//build/config/linux:x11" ] |
| 373 deps += [ "//ui/events/devices" ] |
| 373 if (is_chromeos) { | 374 if (is_chromeos) { |
| 374 sources -= [ "views/tabs/window_finder_x11.cc" ] | 375 sources -= [ "views/tabs/window_finder_x11.cc" ] |
| 375 } | 376 } |
| 376 } | 377 } |
| 377 } | 378 } |
| 378 | 379 |
| 379 if (enable_app_list) { | 380 if (enable_app_list) { |
| 380 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources, | 381 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources, |
| 381 ".", "//chrome") | 382 ".", "//chrome") |
| 382 deps += [ "//ui/app_list" ] | 383 deps += [ "//ui/app_list" ] |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 "//chrome/browser", | 487 "//chrome/browser", |
| 487 "//content/public/browser", | 488 "//content/public/browser", |
| 488 "//content/public/common", | 489 "//content/public/common", |
| 489 "//content/test:test_support", | 490 "//content/test:test_support", |
| 490 "//net:test_support", | 491 "//net:test_support", |
| 491 "//skia", | 492 "//skia", |
| 492 "//testing/gtest", | 493 "//testing/gtest", |
| 493 "//ui/base", | 494 "//ui/base", |
| 494 ] | 495 ] |
| 495 } | 496 } |
| OLD | NEW |