| 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/WebCoalescedInputEvent.cpp", |
| 27 "../web/WebInputEvent.cpp", | 28 "../web/WebInputEvent.cpp", |
| 28 "exported/FilePathConversion.cpp", | 29 "exported/FilePathConversion.cpp", |
| 29 "exported/URLConversion.cpp", | 30 "exported/URLConversion.cpp", |
| 30 "exported/WebCString.cpp", | 31 "exported/WebCString.cpp", |
| 31 "exported/WebString.cpp", | 32 "exported/WebString.cpp", |
| 32 "exported/linux/WebFontRenderStyle.cpp", | 33 "exported/linux/WebFontRenderStyle.cpp", |
| 33 ] | 34 ] |
| 34 if (is_android) { | 35 if (is_android) { |
| 35 set_sources_assignment_filter([]) | 36 set_sources_assignment_filter([]) |
| 36 sources += [ "exported/linux/WebFontRenderStyle.cpp" ] | 37 sources += [ "exported/linux/WebFontRenderStyle.cpp" ] |
| (...skipping 2031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2068 "//third_party/WebKit/Source:inside_blink", | 2069 "//third_party/WebKit/Source:inside_blink", |
| 2069 ] | 2070 ] |
| 2070 | 2071 |
| 2071 deps = [ | 2072 deps = [ |
| 2072 ":test_support", | 2073 ":test_support", |
| 2073 "//cc/surfaces:surface_id", | 2074 "//cc/surfaces:surface_id", |
| 2074 "//testing/gmock", | 2075 "//testing/gmock", |
| 2075 "//testing/gtest", | 2076 "//testing/gtest", |
| 2076 ] | 2077 ] |
| 2077 } | 2078 } |
| OLD | NEW |