| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |