| 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") |
| (...skipping 10 matching lines...) Expand all Loading... |
| 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", | 27 "../web/WebInputEvent.cpp", |
| 28 "exported/FilePathConversion.cpp", | 28 "exported/FilePathConversion.cpp", |
| 29 "exported/URLConversion.cpp", | 29 "exported/URLConversion.cpp", |
| 30 "exported/WebCString.cpp", | 30 "exported/WebCString.cpp", |
| 31 "exported/WebCoalescedInputEvent.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" ] |
| 37 } | 38 } |
| 38 | 39 |
| 39 defines = [ | 40 defines = [ |
| 40 "BLINK_COMMON_IMPLEMENTATION=1", | 41 "BLINK_COMMON_IMPLEMENTATION=1", |
| (...skipping 2047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2088 "//third_party/WebKit/Source:config", | 2089 "//third_party/WebKit/Source:config", |
| 2089 "//third_party/WebKit/Source:inside_blink", | 2090 "//third_party/WebKit/Source:inside_blink", |
| 2090 ] | 2091 ] |
| 2091 | 2092 |
| 2092 deps = [ | 2093 deps = [ |
| 2093 ":test_support", | 2094 ":test_support", |
| 2094 "//testing/gmock", | 2095 "//testing/gmock", |
| 2095 "//testing/gtest", | 2096 "//testing/gtest", |
| 2096 ] | 2097 ] |
| 2097 } | 2098 } |
| OLD | NEW |