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

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

Issue 2318933002: [Bindings] Remove aggregation of generated binding code (Closed)
Patch Set: Fix import order Created 4 years, 3 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
« no previous file with comments | « third_party/WebKit/Source/bindings/scripts/scripts.gni ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//build/split_static_library.gni") 5 import("//build/split_static_library.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//third_party/WebKit/Source/bindings/bindings.gni") 7 import("//third_party/WebKit/Source/bindings/bindings.gni")
8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") 9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 27 matching lines...) Expand all
38 38
39 if (modules_target_type == "split_static_library") { 39 if (modules_target_type == "split_static_library") {
40 split_count = 5 40 split_count = 5
41 } 41 }
42 42
43 visibility = [] # Allow re-assignment of list. 43 visibility = [] # Allow re-assignment of list.
44 visibility = [ "//third_party/WebKit/*" ] 44 visibility = [ "//third_party/WebKit/*" ]
45 45
46 sources = rebase_path(modules_files, ".", "//") 46 sources = rebase_path(modules_files, ".", "//")
47 sources += bindings_modules_v8_files 47 sources += bindings_modules_v8_files
48 sources += rebase_path(bindings_modules_generated_aggregate_files, ".", "//") 48 sources += rebase_path(bindings_modules_generated_interface_files, ".", "//")
49 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//") 49 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//")
50 sources += 50 sources +=
51 rebase_path(bindings_modules_generated_partial_aggregate_files, ".", "//") 51 rebase_path(bindings_modules_generated_partial_interface_files, ".", "//")
52 sources += 52 sources +=
53 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], 53 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ],
54 ".", 54 ".",
55 "//") 55 "//")
56 56
57 configs += [ 57 configs += [
58 ":modules_implementation", 58 ":modules_implementation",
59 59
60 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 60 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
61 "//build/config/compiler:no_size_t_to_int_warning", 61 "//build/config/compiler:no_size_t_to_int_warning",
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 ":modules", 238 ":modules",
239 ":modules_testing", 239 ":modules_testing",
240 "//skia", 240 "//skia",
241 "//testing/gmock", 241 "//testing/gmock",
242 "//testing/gtest", 242 "//testing/gtest",
243 "//third_party/WebKit/Source/core", 243 "//third_party/WebKit/Source/core",
244 "//third_party/WebKit/Source/wtf", 244 "//third_party/WebKit/Source/wtf",
245 "//v8", 245 "//v8",
246 ] 246 ]
247 } 247 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/bindings/scripts/scripts.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698