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

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

Issue 1931043002: Remove requestAutocomplete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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 916 matching lines...) Expand 10 before | Expand all | Expand 10 after
927 } 927 }
928 if (enable_service_discovery) { 928 if (enable_service_discovery) {
929 sources += rebase_path(gypi_values.chrome_browser_service_discovery_sources, 929 sources += rebase_path(gypi_values.chrome_browser_service_discovery_sources,
930 ".", 930 ".",
931 "//chrome") 931 "//chrome")
932 } 932 }
933 if (enable_mdns) { 933 if (enable_mdns) {
934 sources += 934 sources +=
935 rebase_path(gypi_values.chrome_browser_mdns_sources, ".", "//chrome") 935 rebase_path(gypi_values.chrome_browser_mdns_sources, ".", "//chrome")
936 } 936 }
937 if (!enable_autofill_dialog || is_android || is_ios) { 937 if (is_android || is_ios) {
938 sources -= [ 938 sources -= [
939 "autofill/validation_rules_storage_factory.cc", 939 "autofill/validation_rules_storage_factory.cc",
940 "autofill/validation_rules_storage_factory.h", 940 "autofill/validation_rules_storage_factory.h",
941 ] 941 ]
942 } 942 }
943 if (enable_media_router) { 943 if (enable_media_router) {
944 deps += [ "//chrome/browser/media/router" ] 944 deps += [ "//chrome/browser/media/router" ]
945 } 945 }
946 946
947 if (enable_mojo_media) { 947 if (enable_mojo_media) {
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
1337 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1337 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1338 deps = [ 1338 deps = [
1339 "//components/google/core/browser", 1339 "//components/google/core/browser",
1340 "//components/omnibox/browser", 1340 "//components/omnibox/browser",
1341 "//components/rlz", 1341 "//components/rlz",
1342 "//components/search_engines", 1342 "//components/search_engines",
1343 "//rlz:rlz_lib", 1343 "//rlz:rlz_lib",
1344 ] 1344 ]
1345 } 1345 }
1346 } 1346 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698