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