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

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

Issue 1385663002: [Contextual Search] Add Mojo-enabled API component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a few more missing dependencies to the new component's BUILD.gn rules for our renderer sectio… Created 5 years 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
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/features.gni") 5 import("//build/config/features.gni")
6 import("//tools/grit/grit_rule.gni") 6 import("//tools/grit/grit_rule.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_renderer.gypi") ], 9 [ rebase_path("../chrome_renderer.gypi") ],
10 "scope", 10 "scope",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 "//third_party/icu", 65 "//third_party/icu",
66 "//third_party/re2", 66 "//third_party/re2",
67 "//third_party/widevine/cdm:version_h", 67 "//third_party/widevine/cdm:version_h",
68 "//ui/surface", 68 "//ui/surface",
69 "//v8:v8", 69 "//v8:v8",
70 ] 70 ]
71 71
72 if (!is_ios) { 72 if (!is_ios) {
73 deps += [ 73 deps += [
74 "//chrome/common/net", 74 "//chrome/common/net",
75 "//components/contextual_search:renderer",
75 "//media", 76 "//media",
76 ] 77 ]
77 } 78 }
78 79
79 if (enable_nacl) { 80 if (enable_nacl) {
80 deps += [ 81 deps += [
81 "//components/nacl", 82 "//components/nacl",
82 "//components/nacl:nacl_renderer", 83 "//components/nacl:nacl_renderer",
83 ] 84 ]
84 } 85 }
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 ] 215 ]
215 } 216 }
216 217
217 if (is_android) { 218 if (is_android) {
218 sources -= [ 219 sources -= [
219 "safe_browsing/mock_feature_extractor_clock.cc", 220 "safe_browsing/mock_feature_extractor_clock.cc",
220 "safe_browsing/mock_feature_extractor_clock.h", 221 "safe_browsing/mock_feature_extractor_clock.h",
221 ] 222 ]
222 } 223 }
223 } 224 }
OLDNEW
« no previous file with comments | « chrome/chrome_renderer.gypi ('k') | chrome/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698