| 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/libfuzzer/fuzzer_test.gni") | 7 import("//testing/libfuzzer/fuzzer_test.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//third_party/WebKit/public/public_features.gni") | 9 import("//third_party/WebKit/public/public_features.gni") |
| 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 11 import("//third_party/WebKit/Source/config.gni") | 11 import("//third_party/WebKit/Source/config.gni") |
| 12 import("//third_party/WebKit/Source/platform/platform_generated.gni") | 12 import("//third_party/WebKit/Source/platform/platform_generated.gni") |
| 13 | 13 |
| 14 # Most targets in this file are private actions so use that as the default. | 14 # Most targets in this file are private actions so use that as the default. |
| 15 visibility = [ ":*" ] | 15 visibility = [ ":*" ] |
| 16 | 16 |
| 17 blink_platform_neon_files = [ "graphics/cpu/arm/WebGLImageConversionNEON.h" ] | 17 blink_platform_neon_files = [ "graphics/cpu/arm/WebGLImageConversionNEON.h" ] |
| 18 | 18 |
| 19 blink_platform_msa_files = [ "graphics/cpu/mips/WebGLImageConversionMSA.h" ] | 19 blink_platform_msa_files = [ "graphics/cpu/mips/WebGLImageConversionMSA.h" ] |
| 20 | 20 |
| 21 blink_platform_sse_files = [ "graphics/cpu/x86/WebGLImageConversionSSE.h" ] | 21 blink_platform_sse_files = [ "graphics/cpu/x86/WebGLImageConversionSSE.h" ] |
| 22 | 22 |
| 23 component("blink_common") { | 23 component("blink_common") { |
| 24 visibility = [] # Allow re-assignment of list. | 24 visibility = [] # Allow re-assignment of list. |
| 25 visibility = [ "//third_party/WebKit/*" ] | 25 visibility = [ "//third_party/WebKit/*" ] |
| 26 sources = [ | 26 sources = [ |
| 27 "../web/WebInputEvent.cpp", | |
| 28 "exported/FilePathConversion.cpp", | 27 "exported/FilePathConversion.cpp", |
| 29 "exported/URLConversion.cpp", | 28 "exported/URLConversion.cpp", |
| 30 "exported/WebCString.cpp", | 29 "exported/WebCString.cpp", |
| 31 "exported/WebCoalescedInputEvent.cpp", | |
| 32 "exported/WebString.cpp", | 30 "exported/WebString.cpp", |
| 33 "exported/linux/WebFontRenderStyle.cpp", | 31 "exported/linux/WebFontRenderStyle.cpp", |
| 34 ] | 32 ] |
| 35 if (is_android) { | 33 if (is_android) { |
| 36 set_sources_assignment_filter([]) | 34 set_sources_assignment_filter([]) |
| 37 sources += [ "exported/linux/WebFontRenderStyle.cpp" ] | 35 sources += [ "exported/linux/WebFontRenderStyle.cpp" ] |
| 38 } | 36 } |
| 39 | 37 |
| 40 defines = [ | 38 defines = [ |
| 41 "BLINK_COMMON_IMPLEMENTATION=1", | 39 "BLINK_COMMON_IMPLEMENTATION=1", |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 "exported/InterfaceRegistry.cpp", | 499 "exported/InterfaceRegistry.cpp", |
| 502 "exported/Platform.cpp", | 500 "exported/Platform.cpp", |
| 503 "exported/ServiceRegistry.cpp", | 501 "exported/ServiceRegistry.cpp", |
| 504 "exported/WebActiveGestureAnimation.cpp", | 502 "exported/WebActiveGestureAnimation.cpp", |
| 505 "exported/WebActiveGestureAnimation.h", | 503 "exported/WebActiveGestureAnimation.h", |
| 506 "exported/WebAudioBus.cpp", | 504 "exported/WebAudioBus.cpp", |
| 507 "exported/WebAudioDevice.cpp", | 505 "exported/WebAudioDevice.cpp", |
| 508 "exported/WebBlobData.cpp", | 506 "exported/WebBlobData.cpp", |
| 509 "exported/WebCache.cpp", | 507 "exported/WebCache.cpp", |
| 510 "exported/WebCanvasCaptureHandler.cpp", | 508 "exported/WebCanvasCaptureHandler.cpp", |
| 509 "exported/WebCoalescedInputEvent.cpp", |
| 511 "exported/WebContentDecryptionModule.cpp", | 510 "exported/WebContentDecryptionModule.cpp", |
| 512 "exported/WebContentDecryptionModuleAccess.cpp", | 511 "exported/WebContentDecryptionModuleAccess.cpp", |
| 513 "exported/WebContentDecryptionModuleResult.cpp", | 512 "exported/WebContentDecryptionModuleResult.cpp", |
| 514 "exported/WebContentDecryptionModuleSession.cpp", | 513 "exported/WebContentDecryptionModuleSession.cpp", |
| 515 "exported/WebContentSettingCallbacks.cpp", | 514 "exported/WebContentSettingCallbacks.cpp", |
| 516 "exported/WebCredential.cpp", | 515 "exported/WebCredential.cpp", |
| 517 "exported/WebCryptoAlgorithm.cpp", | 516 "exported/WebCryptoAlgorithm.cpp", |
| 518 "exported/WebCryptoKey.cpp", | 517 "exported/WebCryptoKey.cpp", |
| 519 "exported/WebCryptoKeyAlgorithm.cpp", | 518 "exported/WebCryptoKeyAlgorithm.cpp", |
| 520 "exported/WebCryptoResult.cpp", | 519 "exported/WebCryptoResult.cpp", |
| (...skipping 1594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2115 "//third_party/WebKit/Source:config", | 2114 "//third_party/WebKit/Source:config", |
| 2116 "//third_party/WebKit/Source:inside_blink", | 2115 "//third_party/WebKit/Source:inside_blink", |
| 2117 ] | 2116 ] |
| 2118 | 2117 |
| 2119 deps = [ | 2118 deps = [ |
| 2120 ":test_support", | 2119 ":test_support", |
| 2121 "//testing/gmock", | 2120 "//testing/gmock", |
| 2122 "//testing/gtest", | 2121 "//testing/gtest", |
| 2123 ] | 2122 ] |
| 2124 } | 2123 } |
| OLD | NEW |