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

Side by Side Diff: third_party/WebKit/Source/modules/BUILD.gn

Issue 2948363004: Fix remove_webcore_debug_symbols to avoid constant building (Closed)
Patch Set: Reduce duplication Created 3 years, 5 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 | « third_party/WebKit/Source/core/core.gni ('k') | third_party/WebKit/Source/modules/modules.gni » ('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/split_static_library.gni") 5 import("//build/split_static_library.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//third_party/WebKit/Source/bindings/bindings.gni") 7 import("//third_party/WebKit/Source/bindings/bindings.gni")
8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") 9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 "//third_party/sqlite", 163 "//third_party/sqlite",
164 "//third_party/zlib", 164 "//third_party/zlib",
165 ] 165 ]
166 166
167 if (is_win) { 167 if (is_win) {
168 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64 bits. 168 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64 bits.
169 } 169 }
170 170
171 if (remove_webcore_debug_symbols) { 171 if (remove_webcore_debug_symbols) {
172 configs -= [ "//build/config/compiler:default_symbols" ] 172 configs -= [ "//build/config/compiler:default_symbols" ]
173 configs += [ "//build/config/compiler:no_symbols" ] 173 configs += remove_webcore_symbols_config
174 } 174 }
175 } 175 }
176 176
177 source_set("modules_testing") { 177 source_set("modules_testing") {
178 sources = [ 178 sources = [
179 "$bindings_modules_v8_output_dir/V8InternalsPartial.cpp", 179 "$bindings_modules_v8_output_dir/V8InternalsPartial.cpp",
180 "$bindings_modules_v8_output_dir/V8InternalsPartial.h", 180 "$bindings_modules_v8_output_dir/V8InternalsPartial.h",
181 "$bindings_modules_v8_output_dir/V8WorkerInternalsPartial.cpp", 181 "$bindings_modules_v8_output_dir/V8WorkerInternalsPartial.cpp",
182 "$bindings_modules_v8_output_dir/V8WorkerInternalsPartial.h", 182 "$bindings_modules_v8_output_dir/V8WorkerInternalsPartial.h",
183 "accessibility/testing/InternalsAccessibility.cpp", 183 "accessibility/testing/InternalsAccessibility.cpp",
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 ":modules", 326 ":modules",
327 ":modules_testing", 327 ":modules_testing",
328 "//skia", 328 "//skia",
329 "//testing/gmock", 329 "//testing/gmock",
330 "//testing/gtest", 330 "//testing/gtest",
331 "//third_party/WebKit/Source/core", 331 "//third_party/WebKit/Source/core",
332 "//third_party/WebKit/Source/platform/wtf", 332 "//third_party/WebKit/Source/platform/wtf",
333 "//v8", 333 "//v8",
334 ] 334 ]
335 } 335 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/core.gni ('k') | third_party/WebKit/Source/modules/modules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698