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

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

Issue 940813003: Use a utility process for the Mojo v8 proxy resolver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8-pac-in-process-enable
Patch Set: Add browser test Created 5 years, 9 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 7
8 gypi_values = exec_script("//build/gypi_to_gn.py", 8 gypi_values = exec_script("//build/gypi_to_gn.py",
9 [ rebase_path("../chrome_utility.gypi") ], 9 [ rebase_path("../chrome_utility.gypi") ],
10 "scope", 10 "scope",
(...skipping 10 matching lines...) Expand all
21 "//components/strings", 21 "//components/strings",
22 "//components/url_fixer", 22 "//components/url_fixer",
23 "//content/public/common", 23 "//content/public/common",
24 "//content/public/utility", 24 "//content/public/utility",
25 "//media", 25 "//media",
26 "//skia", 26 "//skia",
27 "//third_party/libxml", 27 "//third_party/libxml",
28 "//chrome:resources", 28 "//chrome:resources",
29 "//chrome:strings", 29 "//chrome:strings",
30 "//chrome/common", 30 "//chrome/common",
31 "//net:net_utility_services",
Lei Zhang 2015/03/03 07:50:02 I'm suspicious when you make this change here, but
Anand Mistry (off Chromium) 2015/03/05 05:11:02 Oops. This is wrong and should be in the !android
31 ] 32 ]
32 33
33 if (!is_android) { 34 if (!is_android) {
34 sources += 35 sources +=
35 rebase_path(gypi_values.chrome_utility_importer_sources, ".", "..") 36 rebase_path(gypi_values.chrome_utility_importer_sources, ".", "..")
36 } 37 }
37 38
38 if (enable_extensions) { 39 if (enable_extensions) {
39 deps += [ 40 deps += [
40 "//chrome/common/extensions/api", 41 "//chrome/common/extensions/api",
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 sources -= [ 106 sources -= [
106 "local_discovery/service_discovery_message_handler.cc", 107 "local_discovery/service_discovery_message_handler.cc",
107 "local_discovery/service_discovery_message_handler.h", 108 "local_discovery/service_discovery_message_handler.h",
108 ] 109 ]
109 } 110 }
110 111
111 if (safe_browsing_mode == 1) { 112 if (safe_browsing_mode == 1) {
112 defines += [ "FULL_SAFE_BROWSING" ] 113 defines += [ "FULL_SAFE_BROWSING" ]
113 } 114 }
114 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698