| 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 if (remove_webcore_debug_symbols) { | 169 if (remove_webcore_debug_symbols) { |
| 170 configs -= [ "//build/config/compiler:default_symbols" ] | 170 configs -= [ "//build/config/compiler:default_symbols" ] |
| 171 configs += [ "//build/config/compiler:no_symbols" ] | 171 configs += [ "//build/config/compiler:no_symbols" ] |
| 172 } | 172 } |
| 173 } | 173 } |
| 174 | 174 |
| 175 source_set("modules_testing") { | 175 source_set("modules_testing") { |
| 176 sources = [ | 176 sources = [ |
| 177 "$bindings_modules_v8_output_dir/V8InternalsPartial.cpp", | 177 "$bindings_modules_v8_output_dir/V8InternalsPartial.cpp", |
| 178 "$bindings_modules_v8_output_dir/V8InternalsPartial.h", | 178 "$bindings_modules_v8_output_dir/V8InternalsPartial.h", |
| 179 "$bindings_modules_v8_output_dir/V8WorkerInternalsPartial.cpp", |
| 180 "$bindings_modules_v8_output_dir/V8WorkerInternalsPartial.h", |
| 179 "accessibility/testing/InternalsAccessibility.cpp", | 181 "accessibility/testing/InternalsAccessibility.cpp", |
| 180 "accessibility/testing/InternalsAccessibility.h", | 182 "accessibility/testing/InternalsAccessibility.h", |
| 183 "fetch/testing/InternalsFetch.cpp", |
| 184 "fetch/testing/InternalsFetch.h", |
| 185 "fetch/testing/WorkerInternalsFetch.cpp", |
| 186 "fetch/testing/WorkerInternalsFetch.h", |
| 181 "navigatorcontentutils/testing/InternalsNavigatorContentUtils.cpp", | 187 "navigatorcontentutils/testing/InternalsNavigatorContentUtils.cpp", |
| 182 "navigatorcontentutils/testing/InternalsNavigatorContentUtils.h", | 188 "navigatorcontentutils/testing/InternalsNavigatorContentUtils.h", |
| 183 "navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp", | 189 "navigatorcontentutils/testing/NavigatorContentUtilsClientMock.cpp", |
| 184 "navigatorcontentutils/testing/NavigatorContentUtilsClientMock.h", | 190 "navigatorcontentutils/testing/NavigatorContentUtilsClientMock.h", |
| 185 "peerconnection/testing/InternalsRTCCertificate.cpp", | 191 "peerconnection/testing/InternalsRTCCertificate.cpp", |
| 186 "peerconnection/testing/InternalsRTCCertificate.h", | 192 "peerconnection/testing/InternalsRTCCertificate.h", |
| 187 "serviceworkers/testing/InternalsServiceWorker.cpp", | 193 "serviceworkers/testing/InternalsServiceWorker.cpp", |
| 188 "serviceworkers/testing/InternalsServiceWorker.h", | 194 "serviceworkers/testing/InternalsServiceWorker.h", |
| 189 "speech/testing/InternalsSpeechSynthesis.cpp", | 195 "speech/testing/InternalsSpeechSynthesis.cpp", |
| 190 "speech/testing/InternalsSpeechSynthesis.h", | 196 "speech/testing/InternalsSpeechSynthesis.h", |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 ":modules_testing", | 304 ":modules_testing", |
| 299 "//components/payments:payment_request_blink", | 305 "//components/payments:payment_request_blink", |
| 300 "//skia", | 306 "//skia", |
| 301 "//testing/gmock", | 307 "//testing/gmock", |
| 302 "//testing/gtest", | 308 "//testing/gtest", |
| 303 "//third_party/WebKit/Source/core", | 309 "//third_party/WebKit/Source/core", |
| 304 "//third_party/WebKit/Source/wtf", | 310 "//third_party/WebKit/Source/wtf", |
| 305 "//v8", | 311 "//v8", |
| 306 ] | 312 ] |
| 307 } | 313 } |
| OLD | NEW |