| 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/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 880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 891 "//build/linux:fontconfig", | 891 "//build/linux:fontconfig", |
| 892 "//dbus", | 892 "//dbus", |
| 893 ] | 893 ] |
| 894 } | 894 } |
| 895 if (use_x11) { | 895 if (use_x11) { |
| 896 configs += [ "//build/config/linux:x11" ] | 896 configs += [ "//build/config/linux:x11" ] |
| 897 deps += [ "//ui/gfx/x" ] | 897 deps += [ "//ui/gfx/x" ] |
| 898 } | 898 } |
| 899 } | 899 } |
| 900 | 900 |
| 901 if (is_linux || is_win) { |
| 902 sources += rebase_path(gypi_values.chrome_browser_non_mac_desktop_sources, |
| 903 ".", |
| 904 "//chrome") |
| 905 } |
| 906 |
| 901 if (is_desktop_linux) { | 907 if (is_desktop_linux) { |
| 902 sources += rebase_path(gypi_values.chrome_browser_linux_desktop_sources, | 908 sources += rebase_path(gypi_values.chrome_browser_linux_desktop_sources, |
| 903 ".", | 909 ".", |
| 904 "//chrome") | 910 "//chrome") |
| 905 } | 911 } |
| 906 if (enable_plugin_installation) { | 912 if (enable_plugin_installation) { |
| 907 sources += | 913 sources += |
| 908 rebase_path(gypi_values.chrome_browser_plugin_installation_sources, | 914 rebase_path(gypi_values.chrome_browser_plugin_installation_sources, |
| 909 ".", | 915 ".", |
| 910 "//chrome") | 916 "//chrome") |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1339 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1334 deps = [ | 1340 deps = [ |
| 1335 "//components/google/core/browser", | 1341 "//components/google/core/browser", |
| 1336 "//components/omnibox/browser", | 1342 "//components/omnibox/browser", |
| 1337 "//components/rlz", | 1343 "//components/rlz", |
| 1338 "//components/search_engines", | 1344 "//components/search_engines", |
| 1339 "//rlz:rlz_lib", | 1345 "//rlz:rlz_lib", |
| 1340 ] | 1346 ] |
| 1341 } | 1347 } |
| 1342 } | 1348 } |
| OLD | NEW |