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

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

Issue 1248043003: Initial patch for the web modules layered platform proposal. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 5 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("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.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/core/v8/generated.gni") 8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni")
9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") 9 import("//third_party/WebKit/Source/bindings/modules/modules.gni")
10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 ] 347 ]
348 } 348 }
349 349
350 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_generated 350 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_generated
351 source_set("core_generated") { 351 source_set("core_generated") {
352 sources = bindings_core_v8_files 352 sources = bindings_core_v8_files
353 # These files include all the .cpp files generated from the .idl files 353 # These files include all the .cpp files generated from the .idl files
354 # in webcore_files. 354 # in webcore_files.
355 sources += bindings_core_generated_aggregate_files 355 sources += bindings_core_generated_aggregate_files
356 sources += bindings_core_generated_union_type_files 356 sources += bindings_core_generated_union_type_files
357 sources += bindings_core_generated_web_modules_files
357 # IDL dictionary impl files generated by IDL compiler 358 # IDL dictionary impl files generated by IDL compiler
358 sources += generated_core_dictionary_files 359 sources += generated_core_dictionary_files
359 360
360 sources += [ 361 sources += [
361 # Additional .cpp files for HashTools.h 362 # Additional .cpp files for HashTools.h
362 "$blink_core_output_dir/CSSPropertyNames.cpp", 363 "$blink_core_output_dir/CSSPropertyNames.cpp",
363 "$blink_core_output_dir/CSSValueKeywords.cpp", 364 "$blink_core_output_dir/CSSValueKeywords.cpp",
364 365
365 # Additional .cpp files from make_core_generated actions. 366 # Additional .cpp files from make_core_generated actions.
366 "$blink_core_output_dir/Event.cpp", 367 "$blink_core_output_dir/Event.cpp",
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after
1038 "$blink_core_output_dir/{{source_name_part}}.h", 1039 "$blink_core_output_dir/{{source_name_part}}.h",
1039 ] 1040 ]
1040 args = [ 1041 args = [
1041 "{{source}}", 1042 "{{source}}",
1042 rel_blink_core_gen_dir, 1043 rel_blink_core_gen_dir,
1043 bison_exe, 1044 bison_exe,
1044 ] 1045 ]
1045 1046
1046 deps = make_core_generated_deps 1047 deps = make_core_generated_deps
1047 } 1048 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698