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

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

Issue 680193003: IDL: Generate union type containers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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/make_file_arrays.gni") 8 import("//third_party/WebKit/Source/build/make_file_arrays.gni")
9 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 9 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
10 import("//third_party/WebKit/Source/modules/modules.gni") 10 import("//third_party/WebKit/Source/modules/modules.gni")
11 11
12 visibility = [ "//third_party/WebKit/Source/*" ] 12 visibility = [ "//third_party/WebKit/Source/*" ]
13 13
14 # GYP version: WebKit/Source/modules/modules.gyp:modules 14 # GYP version: WebKit/Source/modules/modules.gyp:modules
15 source_set("modules") { 15 source_set("modules") {
16 visibility = [] # Allow re-assignment of list. 16 visibility = [] # Allow re-assignment of list.
17 visibility = [ "//third_party/WebKit/*" ] 17 visibility = [ "//third_party/WebKit/*" ]
18 18
19 sources = rebase_path(modules_files, ".", "//") 19 sources = rebase_path(modules_files, ".", "//")
20 sources += bindings_modules_v8_files 20 sources += bindings_modules_v8_files
21 sources += rebase_path(bindings_modules_generated_aggregate_files, ".", "//") 21 sources += rebase_path(bindings_modules_generated_aggregate_files, ".", "//")
22 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//")
22 sources += rebase_path(bindings_modules_generated_partial_aggregate_files, "." , "//") 23 sources += rebase_path(bindings_modules_generated_partial_aggregate_files, "." , "//")
23 sources += rebase_path([ bindings_modules_generated_init_partial_interfaces_fi le ], ".", "//") 24 sources += rebase_path([ bindings_modules_generated_init_partial_interfaces_fi le ], ".", "//")
24 25
25 if (!is_win) { 26 if (!is_win) {
26 sources -= [ 27 sources -= [
27 "webdatabase/sqlite/SQLiteFileSystemWin.cpp", 28 "webdatabase/sqlite/SQLiteFileSystemWin.cpp",
28 ] 29 ]
29 } 30 }
30 if (!is_posix) { 31 if (!is_posix) {
31 sources -= [ 32 sources -= [
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 } 91 }
91 92
92 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate d 93 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate d
93 group("make_modules_generated") { 94 group("make_modules_generated") {
94 deps = [ 95 deps = [
95 "//third_party/WebKit/Source/core:core_event_interfaces", 96 "//third_party/WebKit/Source/core:core_event_interfaces",
96 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", 97 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated",
97 ":module_names", 98 ":module_names",
98 ] 99 ]
99 } 100 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698