Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(936)

Side by Side Diff: third_party/WebKit/Source/modules/BUILD.gn

Issue 1676083002: Extract webkit_unit_tests from blink_web component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Win dbg non-oilpan fix: make TextFinder non-copyable Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//third_party/WebKit/Source/bindings/bindings.gni") 5 import("//third_party/WebKit/Source/bindings/bindings.gni")
6 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 6 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
7 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") 7 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni")
8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
9 import("//third_party/WebKit/Source/modules/modules.gni") 9 import("//third_party/WebKit/Source/modules/modules.gni")
10 10
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 "$bindings_modules_v8_output_dir/V8InternalsPartial.h", 76 "$bindings_modules_v8_output_dir/V8InternalsPartial.h",
77 ] 77 ]
78 78
79 configs += [ 79 configs += [
80 "//third_party/WebKit/Source:config", 80 "//third_party/WebKit/Source:config",
81 "//third_party/WebKit/Source:inside_blink", 81 "//third_party/WebKit/Source:inside_blink",
82 ] 82 ]
83 83
84 deps = [ 84 deps = [
85 "//third_party/WebKit/Source/core", 85 "//third_party/WebKit/Source/core",
86 "//third_party/WebKit/Source/modules",
86 ] 87 ]
87 } 88 }
88 89
89 action("module_names") { 90 action("module_names") {
90 script = "../build/scripts/make_names.py" 91 script = "../build/scripts/make_names.py"
91 92
92 module_names_in = "indexeddb/IndexedDBNames.in" 93 module_names_in = "indexeddb/IndexedDBNames.in"
93 inputs = make_names_files + [ module_names_in ] 94 inputs = make_names_files + [ module_names_in ]
94 95
95 outputs = [ 96 outputs = [
96 "$blink_modules_output_dir/IndexedDBNames.cpp", 97 "$blink_modules_output_dir/IndexedDBNames.cpp",
97 "$blink_modules_output_dir/IndexedDBNames.h", 98 "$blink_modules_output_dir/IndexedDBNames.h",
98 ] 99 ]
99 100
100 args = [ 101 args = [
101 rebase_path(module_names_in, root_build_dir), 102 rebase_path(module_names_in, root_build_dir),
102 "--output_dir", 103 "--output_dir",
103 rebase_path(blink_modules_output_dir, root_build_dir), 104 rebase_path(blink_modules_output_dir, root_build_dir),
104 ] 105 ]
105 } 106 }
106 107
107 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate d 108 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate d
108 group("make_modules_generated") { 109 group("make_modules_generated") {
109 public_deps = [ 110 public_deps = [
110 ":module_names", 111 ":module_names",
111 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", 112 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated",
112 "//third_party/WebKit/Source/core:core_event_interfaces", 113 "//third_party/WebKit/Source/core:core_event_interfaces",
113 ] 114 ]
114 } 115 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/plugins/PluginView.h ('k') | third_party/WebKit/Source/modules/mediastream/RTCDataChannel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698