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

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

Issue 2387723002: Test CL to demonstrate GN + hermetic toolchain
Patch Set: more fixes. Created 4 years, 2 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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/toolchain/toolchain.gni")
6 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
7 import("//build/split_static_library.gni") 8 import("//build/split_static_library.gni")
8 import("//testing/libfuzzer/fuzzer_test.gni") 9 import("//testing/libfuzzer/fuzzer_test.gni")
9 import("//third_party/WebKit/Source/bindings/bindings.gni") 10 import("//third_party/WebKit/Source/bindings/bindings.gni")
10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 11 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
11 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") 12 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni")
12 import("//third_party/WebKit/Source/config.gni") 13 import("//third_party/WebKit/Source/config.gni")
13 import("//third_party/WebKit/Source/core/core.gni") 14 import("//third_party/WebKit/Source/core/core.gni")
14 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 15 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
15 import("//third_party/WebKit/Source/modules/modules_idl_files.gni") 16 import("//third_party/WebKit/Source/modules/modules_idl_files.gni")
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 ] 797 ]
797 outputs = [ 798 outputs = [
798 "$blink_core_output_dir/{{source_name_part}}.cpp", 799 "$blink_core_output_dir/{{source_name_part}}.cpp",
799 "$blink_core_output_dir/{{source_name_part}}.h", 800 "$blink_core_output_dir/{{source_name_part}}.h",
800 ] 801 ]
801 args = [ 802 args = [
802 "{{source}}", 803 "{{source}}",
803 rel_blink_core_gen_dir, 804 rel_blink_core_gen_dir,
804 bison_exe, 805 bison_exe,
805 ] 806 ]
807 if (!use_system_xcode) {
808 args += [
809 hermetic_xcode_path,
810 ]
811 }
806 812
807 deps = make_core_generated_deps 813 deps = make_core_generated_deps
808 } 814 }
809 815
810 # Compiles the code generated by the targets above. 816 # Compiles the code generated by the targets above.
811 target(core_link_small_target_type, "core_generated") { 817 target(core_link_small_target_type, "core_generated") {
812 sources = bindings_core_v8_files 818 sources = bindings_core_v8_files
813 819
814 # Targets from above that generate outputs that need to be compiled. 820 # Targets from above that generate outputs that need to be compiled.
815 # All sources declared as outputs from these targets will be compiled into thi s 821 # All sources declared as outputs from these targets will be compiled into thi s
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
1252 sources = [ 1258 sources = [
1253 "html/parser/HTMLPreloadScannerFuzzer.cpp", 1259 "html/parser/HTMLPreloadScannerFuzzer.cpp",
1254 "html/parser/TextResourceDecoderForFuzzing.h", 1260 "html/parser/TextResourceDecoderForFuzzing.h",
1255 ] 1261 ]
1256 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" 1262 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser"
1257 deps = [ 1263 deps = [
1258 ":core", 1264 ":core",
1259 "../platform:blink_fuzzer_test_support", 1265 "../platform:blink_fuzzer_test_support",
1260 ] 1266 ]
1261 } 1267 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/build/scripts/rule_bison.py ('k') | third_party/WebKit/Source/platform/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698