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

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

Issue 1647723002: [win/cros/lin] Add back the spellcheck menu. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 10 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
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 886 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 "//build/linux:fontconfig", 897 "//build/linux:fontconfig",
898 "//dbus", 898 "//dbus",
899 ] 899 ]
900 } 900 }
901 if (use_x11) { 901 if (use_x11) {
902 configs += [ "//build/config/linux:x11" ] 902 configs += [ "//build/config/linux:x11" ]
903 deps += [ "//ui/gfx/x" ] 903 deps += [ "//ui/gfx/x" ]
904 } 904 }
905 } 905 }
906 906
907 if (is_linux || is_win) {
908 sources += rebase_path(gypi_values.chrome_browser_non_mac_desktop_sources,
909 ".",
910 "//chrome")
911 }
912
907 if (is_desktop_linux) { 913 if (is_desktop_linux) {
908 sources += rebase_path(gypi_values.chrome_browser_linux_desktop_sources, 914 sources += rebase_path(gypi_values.chrome_browser_linux_desktop_sources,
909 ".", 915 ".",
910 "//chrome") 916 "//chrome")
911 } 917 }
912 if (enable_plugin_installation) { 918 if (enable_plugin_installation) {
913 sources += 919 sources +=
914 rebase_path(gypi_values.chrome_browser_plugin_installation_sources, 920 rebase_path(gypi_values.chrome_browser_plugin_installation_sources,
915 ".", 921 ".",
916 "//chrome") 922 "//chrome")
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
1337 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1343 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1338 deps = [ 1344 deps = [
1339 "//components/google/core/browser", 1345 "//components/google/core/browser",
1340 "//components/omnibox/browser", 1346 "//components/omnibox/browser",
1341 "//components/rlz", 1347 "//components/rlz",
1342 "//components/search_engines", 1348 "//components/search_engines",
1343 "//rlz:rlz_lib", 1349 "//rlz:rlz_lib",
1344 ] 1350 ]
1345 } 1351 }
1346 } 1352 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698