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

Side by Side Diff: third_party/WebKit/Source/modules/modules.gni

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/modules/BUILD.gn ('k') | third_party/WebKit/Source/platform/BUILD.gn » ('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 # DON'T INCLUDE modules_idl_files.gni FROM HERE. 5 # DON'T INCLUDE modules_idl_files.gni FROM HERE.
6 # 6 #
7 # This file is shared with all modules' BUILD files which shouldn't need access 7 # This file is shared with all modules' BUILD files which shouldn't need access
8 # to the huge and slow lists of sources. If sharing is necessary, make a 8 # to the huge and slow lists of sources. If sharing is necessary, make a
9 # separate .gni. 9 # separate .gni.
10 import("//build/split_static_library.gni") 10 import("//build/split_static_library.gni")
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 configs += [ 63 configs += [
64 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 64 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
65 "//build/config/compiler:no_size_t_to_int_warning", 65 "//build/config/compiler:no_size_t_to_int_warning",
66 "//third_party/WebKit/Source:config", 66 "//third_party/WebKit/Source:config",
67 "//third_party/WebKit/Source/modules:modules_implementation", 67 "//third_party/WebKit/Source/modules:modules_implementation",
68 "//third_party/WebKit/Source:non_test_config", 68 "//third_party/WebKit/Source:non_test_config",
69 "//third_party/WebKit/Source:inside_blink", 69 "//third_party/WebKit/Source:inside_blink",
70 ] 70 ]
71 if (remove_webcore_debug_symbols) { 71 if (remove_webcore_debug_symbols) {
72 configs -= [ "//build/config/compiler:default_symbols" ] 72 configs -= [ "//build/config/compiler:default_symbols" ]
73 configs += [ "//build/config/compiler:no_symbols" ] 73 configs += remove_webcore_symbols_config
74 } 74 }
75 } 75 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/BUILD.gn ('k') | third_party/WebKit/Source/platform/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698