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