Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 674703002: Linux: Dynamically load libudev. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scoped_udev
Patch Set: rebase to head, which includes third_party/libudev already Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 ] 360 ]
361 } 361 }
362 } 362 }
363 if (is_desktop_linux) { 363 if (is_desktop_linux) {
364 sources += rebase_path(gypi_values.chrome_browser_ui_desktop_linux_sources, 364 sources += rebase_path(gypi_values.chrome_browser_ui_desktop_linux_sources,
365 ".", "//chrome") 365 ".", "//chrome")
366 } 366 }
367 if (is_linux) { # Both desktop Linux and ChromeOS. 367 if (is_linux) { # Both desktop Linux and ChromeOS.
368 sources += rebase_path(gypi_values.chrome_browser_ui_linux_sources, 368 sources += rebase_path(gypi_values.chrome_browser_ui_linux_sources,
369 ".", "//chrome") 369 ".", "//chrome")
370 configs += [ "//build/config/linux:udev" ] 370 deps += [ "//device/udev_linux" ]
371 if (use_aura) { 371 if (use_aura) {
372 configs += [ "//build/config/linux:fontconfig" ] 372 configs += [ "//build/config/linux:fontconfig" ]
373 deps += [ "//dbus" ] 373 deps += [ "//dbus" ]
374 } 374 }
375 if (use_x11) { 375 if (use_x11) {
376 sources += rebase_path(gypi_values.chrome_browser_ui_x11_sources, 376 sources += rebase_path(gypi_values.chrome_browser_ui_x11_sources,
377 ".", "//chrome") 377 ".", "//chrome")
378 configs += [ "//build/config/linux:x11" ] 378 configs += [ "//build/config/linux:x11" ]
379 deps += [ "//ui/events/devices" ] 379 deps += [ "//ui/events/devices" ]
380 if (is_chromeos) { 380 if (is_chromeos) {
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 "//chrome/browser", 493 "//chrome/browser",
494 "//content/public/browser", 494 "//content/public/browser",
495 "//content/public/common", 495 "//content/public/common",
496 "//content/test:test_support", 496 "//content/test:test_support",
497 "//net:test_support", 497 "//net:test_support",
498 "//skia", 498 "//skia",
499 "//testing/gtest", 499 "//testing/gtest",
500 "//ui/base", 500 "//ui/base",
501 ] 501 ]
502 } 502 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/image_writer_private/removable_storage_provider_linux.cc ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698