| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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/jumbo.gni") |
| 5 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 7 import("//third_party/WebKit/Source/bindings/bindings.gni") | 8 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 8 import("//third_party/WebKit/Source/config.gni") | 9 import("//third_party/WebKit/Source/config.gni") |
| 9 import("//third_party/WebKit/Source/core/core.gni") | 10 import("//third_party/WebKit/Source/core/core.gni") |
| 10 import("//third_party/WebKit/Source/modules/modules.gni") | 11 import("//third_party/WebKit/Source/modules/modules.gni") |
| 11 | 12 |
| 12 visibility = [ "//third_party/WebKit/*" ] | 13 visibility = [ "//third_party/WebKit/*" ] |
| 13 | 14 |
| 14 component("controller") { | 15 jumbo_component("controller") { |
| 15 output_name = "blink_controller" | 16 output_name = "blink_controller" |
| 16 | 17 |
| 17 deps = [ | 18 deps = [ |
| 18 "//skia", | 19 "//skia", |
| 19 "//third_party/WebKit/Source/core", | 20 "//third_party/WebKit/Source/core", |
| 20 "//third_party/WebKit/Source/modules", | 21 "//third_party/WebKit/Source/modules", |
| 21 "//third_party/WebKit/Source/platform", | 22 "//third_party/WebKit/Source/platform", |
| 22 "//v8", | 23 "//v8", |
| 23 ] | 24 ] |
| 24 | 25 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 50 } | 51 } |
| 51 } | 52 } |
| 52 | 53 |
| 53 group("webkit_unit_tests_data") { | 54 group("webkit_unit_tests_data") { |
| 54 data = [ | 55 data = [ |
| 55 "../core/testing/data/", | 56 "../core/testing/data/", |
| 56 "../core/paint/test_data/", | 57 "../core/paint/test_data/", |
| 57 ] | 58 ] |
| 58 } | 59 } |
| 59 | 60 |
| 60 test("webkit_unit_tests") { | 61 jumbo_test("webkit_unit_tests") { |
| 61 visibility = [] # Allow re-assignment of list. | 62 visibility = [] # Allow re-assignment of list. |
| 62 visibility = [ "*" ] | 63 visibility = [ "*" ] |
| 63 | 64 |
| 64 sources = [ | 65 sources = [ |
| 65 "tests/RunAllTests.cpp", | 66 "tests/RunAllTests.cpp", |
| 66 ] | 67 ] |
| 67 sources += bindings_unittest_files | 68 sources += bindings_unittest_files |
| 68 | 69 |
| 70 jumbo_excluded_sources = [ |
| 71 # Explicit specialization of |
| 72 # blink::NativeValueTraits<blink::IDLByte after instantiation. |
| 73 "//third_party/WebKit/Source/bindings/core/v8/NativeValueTraitsImplTest.cpp"
, |
| 74 "//third_party/WebKit/Source/bindings/core/v8/V8BindingTest.cpp", |
| 75 |
| 76 # Too many class Function. |
| 77 "//third_party/WebKit/Source/bindings/core/v8/ScriptPromiseTest.cpp", |
| 78 |
| 79 # Too many GarbageCollectedHolder |
| 80 "//third_party/WebKit/Source/bindings/core/v8/ToV8Test.cpp", |
| 81 |
| 82 # Too many SerializedValue |
| 83 "//third_party/WebKit/Source/bindings/modules/v8/serialization/V8ScriptValue
SerializerForModulesTest.cpp", |
| 84 ] |
| 85 |
| 69 deps = [ | 86 deps = [ |
| 70 ":controller", | 87 ":controller", |
| 71 "//base", | 88 "//base", |
| 72 "//base:i18n", | 89 "//base:i18n", |
| 73 "//base/test:test_support", | 90 "//base/test:test_support", |
| 74 "//content/test:test_support", | 91 "//content/test:test_support", |
| 75 "//gpu:test_support", | 92 "//gpu:test_support", |
| 76 "//services/device/public/interfaces:interfaces_blink", | 93 "//services/device/public/interfaces:interfaces_blink", |
| 77 "//testing/gmock", | 94 "//testing/gmock", |
| 78 "//testing/gtest", | 95 "//testing/gtest", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 101 | 118 |
| 102 if (is_android) { | 119 if (is_android) { |
| 103 deps += [ | 120 deps += [ |
| 104 "//base:base_java", | 121 "//base:base_java", |
| 105 "//content/public/android:content_java", | 122 "//content/public/android:content_java", |
| 106 "//content/shell/android:content_shell_assets", | 123 "//content/shell/android:content_shell_assets", |
| 107 "//net/android:net_java", | 124 "//net/android:net_java", |
| 108 ] | 125 ] |
| 109 } | 126 } |
| 110 } | 127 } |
| OLD | NEW |