mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
50 lines
1.3 KiB
Plaintext
50 lines
1.3 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("//third_party/WebKit/Source/modules/modules.gni")
|
|
|
|
blink_modules_sources("exported") {
|
|
sources = [
|
|
"WebAXObject.cpp",
|
|
"WebApplyConstraintsRequest.cpp",
|
|
"WebCryptoNormalize.cpp",
|
|
"WebDOMFileSystem.cpp",
|
|
"WebDOMMediaStreamTrack.cpp",
|
|
"WebEmbeddedWorkerImpl.cpp",
|
|
"WebEmbeddedWorkerImpl.h",
|
|
"WebIDBKey.cpp",
|
|
"WebIDBKeyRange.cpp",
|
|
"WebMediaDeviceChangeObserver.cpp",
|
|
"WebMediaDevicesRequest.cpp",
|
|
"WebMediaStreamRegistry.cpp",
|
|
"WebSpeechGrammar.cpp",
|
|
"WebSpeechRecognitionHandle.cpp",
|
|
"WebSpeechRecognitionResult.cpp",
|
|
"WebStorageEventDispatcherImpl.cpp",
|
|
"WebUserMediaRequest.cpp",
|
|
]
|
|
|
|
defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ]
|
|
}
|
|
|
|
static_library("test_support") {
|
|
deps = [
|
|
"//skia",
|
|
"//third_party/WebKit/Source/core:testing",
|
|
"//third_party/WebKit/Source/modules:modules_testing",
|
|
"//third_party/WebKit/Source/platform",
|
|
"//v8",
|
|
]
|
|
|
|
sources = [
|
|
"WebTestingSupport.cpp",
|
|
]
|
|
|
|
configs += [
|
|
"//third_party/WebKit/Source:config",
|
|
"//third_party/WebKit/Source/core:blink_core_pch",
|
|
]
|
|
|
|
include_dirs = [ "$root_gen_dir/blink" ]
|
|
}
|