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

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

Issue 1909273002: 🐳 Move linux pkg_config() calls into separate BUILD.gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments & visibility Created 4 years, 8 months 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
« no previous file with comments | « chrome/BUILD.gn ('k') | chrome/browser/extensions/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after
869 if (toolkit_views) { 869 if (toolkit_views) {
870 deps += [ 870 deps += [
871 "//ui/views", 871 "//ui/views",
872 "//ui/views/controls/webview", 872 "//ui/views/controls/webview",
873 ] 873 ]
874 } 874 }
875 } 875 }
876 876
877 if (is_linux) { 877 if (is_linux) {
878 if (use_aura) { 878 if (use_aura) {
879 configs += [ "//build/config/linux:dbus" ] 879 configs += [ "//build/config/linux/dbus" ]
880 deps += [ 880 deps += [
881 "//build/linux:fontconfig", 881 "//build/linux:fontconfig",
882 "//dbus", 882 "//dbus",
883 ] 883 ]
884 } 884 }
885 if (use_x11) { 885 if (use_x11) {
886 configs += [ "//build/config/linux:x11" ] 886 configs += [ "//build/config/linux:x11" ]
887 deps += [ "//ui/gfx/x" ] 887 deps += [ "//ui/gfx/x" ]
888 } 888 }
889 } 889 }
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
1226 "chromeos/policy/fake_device_cloud_policy_initializer.h", 1226 "chromeos/policy/fake_device_cloud_policy_initializer.h",
1227 "chromeos/policy/fake_device_cloud_policy_manager.cc", 1227 "chromeos/policy/fake_device_cloud_policy_manager.cc",
1228 "chromeos/policy/fake_device_cloud_policy_manager.h", 1228 "chromeos/policy/fake_device_cloud_policy_manager.h",
1229 "chromeos/policy/stub_enterprise_install_attributes.cc", 1229 "chromeos/policy/stub_enterprise_install_attributes.cc",
1230 "chromeos/policy/stub_enterprise_install_attributes.h", 1230 "chromeos/policy/stub_enterprise_install_attributes.h",
1231 "chromeos/settings/device_settings_test_helper.cc", 1231 "chromeos/settings/device_settings_test_helper.cc",
1232 "chromeos/settings/device_settings_test_helper.h", 1232 "chromeos/settings/device_settings_test_helper.h",
1233 "chromeos/system/fake_input_device_settings.cc", 1233 "chromeos/system/fake_input_device_settings.cc",
1234 "chromeos/system/fake_input_device_settings.h", 1234 "chromeos/system/fake_input_device_settings.h",
1235 ] 1235 ]
1236 configs += [ "//build/config/linux:dbus" ] 1236 configs += [ "//build/config/linux/dbus" ]
1237 deps += [ "//chromeos:test_support" ] 1237 deps += [ "//chromeos:test_support" ]
1238 } 1238 }
1239 1239
1240 if (enable_configuration_policy) { 1240 if (enable_configuration_policy) {
1241 sources += [ 1241 sources += [
1242 "policy/test/local_policy_test_server.cc", 1242 "policy/test/local_policy_test_server.cc",
1243 "policy/test/local_policy_test_server.h", 1243 "policy/test/local_policy_test_server.h",
1244 ] 1244 ]
1245 public_deps += [ 1245 public_deps += [
1246 "//components/policy:policy_component_test_support", 1246 "//components/policy:policy_component_test_support",
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
1334 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1334 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1335 deps = [ 1335 deps = [
1336 "//components/google/core/browser", 1336 "//components/google/core/browser",
1337 "//components/omnibox/browser", 1337 "//components/omnibox/browser",
1338 "//components/rlz", 1338 "//components/rlz",
1339 "//components/search_engines", 1339 "//components/search_engines",
1340 "//rlz:rlz_lib", 1340 "//rlz:rlz_lib",
1341 ] 1341 ]
1342 } 1342 }
1343 } 1343 }
OLDNEW
« no previous file with comments | « chrome/BUILD.gn ('k') | chrome/browser/extensions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698