mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
124 lines
3.0 KiB
Plaintext
124 lines
3.0 KiB
Plaintext
# Copyright 2017 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//build/config/jumbo.gni")
|
|
import("//build/config/ui.gni")
|
|
import("//testing/test.gni")
|
|
import("//third_party/WebKit/Source/bindings/bindings.gni")
|
|
import("//third_party/WebKit/Source/config.gni")
|
|
import("//third_party/WebKit/Source/core/core.gni")
|
|
import("//third_party/WebKit/Source/modules/modules.gni")
|
|
|
|
visibility = [ "//third_party/WebKit/*" ]
|
|
|
|
component("controller") {
|
|
output_name = "blink_controller"
|
|
|
|
deps = [
|
|
"//skia",
|
|
"//third_party/WebKit/Source/core",
|
|
"//third_party/WebKit/Source/modules",
|
|
"//third_party/WebKit/Source/platform",
|
|
"//v8",
|
|
]
|
|
|
|
configs += [
|
|
"//build/config/compiler:wexit_time_destructors",
|
|
"//third_party/WebKit/Source:config",
|
|
"//third_party/WebKit/Source:inside_blink",
|
|
"//third_party/WebKit/Source:non_test_config",
|
|
"//third_party/WebKit/Source/core:blink_core_pch",
|
|
]
|
|
|
|
defines = [ "BLINK_CONTROLLER_IMPLEMENTATION=1" ]
|
|
|
|
sources = [
|
|
"BlinkInitializer.cpp",
|
|
"BlinkInitializer.h",
|
|
"ControllerExport.h",
|
|
"OomInterventionImpl.cpp",
|
|
"OomInterventionImpl.h",
|
|
]
|
|
|
|
if (is_mac) {
|
|
libs = [
|
|
"AppKit.framework",
|
|
"Foundation.framework",
|
|
]
|
|
}
|
|
|
|
if (remove_webcore_debug_symbols) {
|
|
configs -= [ "//build/config/compiler:default_symbols" ]
|
|
configs += remove_webcore_symbols_config
|
|
}
|
|
}
|
|
|
|
group("webkit_unit_tests_data") {
|
|
data = [
|
|
"../core/testing/data/",
|
|
"../core/paint/test_data/",
|
|
"../core/animation/test_data/",
|
|
]
|
|
}
|
|
|
|
test("webkit_unit_tests") {
|
|
deps = [
|
|
":webkit_unit_tests_sources",
|
|
]
|
|
|
|
data_deps = [
|
|
":webkit_unit_tests_data",
|
|
"//content/shell:pak",
|
|
]
|
|
|
|
if (is_android) {
|
|
deps += [
|
|
"//base:base_java",
|
|
"//content/public/android:content_java",
|
|
"//content/shell/android:content_shell_assets",
|
|
"//net/android:net_java",
|
|
]
|
|
}
|
|
}
|
|
|
|
jumbo_source_set("webkit_unit_tests_sources") {
|
|
visibility = [] # Allow re-assignment of list.
|
|
visibility = [ "*" ]
|
|
testonly = true
|
|
|
|
sources = [
|
|
"OomInterventionImplTest.cpp",
|
|
"tests/RunAllTests.cpp",
|
|
]
|
|
sources += bindings_unittest_files
|
|
|
|
deps = [
|
|
":controller",
|
|
"//base",
|
|
"//base:i18n",
|
|
"//base/test:test_support",
|
|
"//content/test:test_support",
|
|
"//gpu:test_support",
|
|
"//services/device/public/interfaces:interfaces_blink",
|
|
"//testing/gmock",
|
|
"//testing/gtest",
|
|
"//third_party/WebKit/Source/core:unit_tests",
|
|
"//third_party/WebKit/Source/modules:unit_tests",
|
|
"//third_party/WebKit/Source/modules/exported:test_support",
|
|
"//third_party/WebKit/Source/platform:test_support",
|
|
"//third_party/WebKit/Source/platform:unit_tests",
|
|
"//third_party/WebKit/Source/platform/wtf",
|
|
"//third_party/libwebp",
|
|
"//third_party/zlib",
|
|
"//url",
|
|
"//v8",
|
|
]
|
|
|
|
configs += [
|
|
"//third_party/WebKit/Source:config",
|
|
"//third_party/WebKit/Source:inside_blink",
|
|
"//third_party/WebKit/Source/core:blink_core_pch",
|
|
]
|
|
}
|