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

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

Issue 2043933002: Move IPC fuzzer switches and helpers from chrome/common to content/common. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove CONTENT_EXPORT Created 4 years, 6 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
« no previous file with comments | « chrome/common/external_ipc_dumper.cc ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('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 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
8 7
9 gypi_values = exec_script("//build/gypi_to_gn.py", 8 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("../chrome_renderer.gypi") ], 9 [ rebase_path("../chrome_renderer.gypi") ],
11 "scope", 10 "scope",
12 [ "../chrome_renderer.gypi" ]) 11 [ "../chrome_renderer.gypi" ])
13 12
14 # GYP version: chrome/chrome_resources.gyp:chrome_resources 13 # GYP version: chrome/chrome_resources.gyp:chrome_resources
15 # (generate_renderer_resources action) 14 # (generate_renderer_resources action)
16 grit("resources") { 15 grit("resources") {
17 source = "resources/renderer_resources.grd" 16 source = "resources/renderer_resources.grd"
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 174
176 if (is_win) { 175 if (is_win) {
177 deps += [ "//third_party/wtl" ] 176 deps += [ "//third_party/wtl" ]
178 } 177 }
179 if (is_android) { 178 if (is_android) {
180 sources -= [ 179 sources -= [
181 "spellchecker/hunspell_engine.cc", 180 "spellchecker/hunspell_engine.cc",
182 "spellchecker/hunspell_engine.h", 181 "spellchecker/hunspell_engine.h",
183 ] 182 ]
184 } 183 }
185
186 if (enable_ipc_fuzzer) {
187 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
188 }
189 } 184 }
190 185
191 # In GYP this is part of test_support_common. 186 # In GYP this is part of test_support_common.
192 source_set("test_support") { 187 source_set("test_support") {
193 testonly = true 188 testonly = true
194 visibility = [ "//chrome/test:test_support" ] 189 visibility = [ "//chrome/test:test_support" ]
195 190
196 sources = [ 191 sources = [
197 "chrome_mock_render_thread.cc", 192 "chrome_mock_render_thread.cc",
198 "chrome_mock_render_thread.h", 193 "chrome_mock_render_thread.h",
(...skipping 21 matching lines...) Expand all
220 ] 215 ]
221 } 216 }
222 217
223 if (is_android) { 218 if (is_android) {
224 sources -= [ 219 sources -= [
225 "safe_browsing/mock_feature_extractor_clock.cc", 220 "safe_browsing/mock_feature_extractor_clock.cc",
226 "safe_browsing/mock_feature_extractor_clock.h", 221 "safe_browsing/mock_feature_extractor_clock.h",
227 ] 222 ]
228 } 223 }
229 } 224 }
OLDNEW
« no previous file with comments | « chrome/common/external_ipc_dumper.cc ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698