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

Side by Side Diff: third_party/WebKit/Source/platform/loader/BUILD.gn

Issue 2638233002: Convert make_names and make_event_factory to use json5 config format. (Closed)
Patch Set: fix PLATFORM_EXPORT Created 3 years, 10 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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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/build/scripts/scripts.gni") 5 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
6 import("//third_party/WebKit/Source/platform/platform_generated.gni") 6 import("//third_party/WebKit/Source/platform/platform_generated.gni")
7 7
8 make_names("make_platform_loader_generated_fetch_initiator_type_names") { 8 make_names("make_platform_loader_generated_fetch_initiator_type_names") {
9 in_files = [ "fetch/FetchInitiatorTypeNames.in" ] 9 in_files = [ "fetch/FetchInitiatorTypeNames.json5" ]
10 outputs = [ 10 outputs = [
11 "$blink_platform_output_dir/loader/fetch/FetchInitiatorTypeNames.cpp", 11 "$blink_platform_output_dir/loader/fetch/FetchInitiatorTypeNames.cpp",
12 "$blink_platform_output_dir/loader/fetch/FetchInitiatorTypeNames.h", 12 "$blink_platform_output_dir/loader/fetch/FetchInitiatorTypeNames.h",
13 ] 13 ]
14 } 14 }
15 15
16 source_set("loader") { 16 source_set("loader") {
17 # This target is a logical part of the platform and only the platform target 17 # This target is a logical part of the platform and only the platform target
18 # should depend on it. 18 # should depend on it.
19 visibility = [ "//third_party/WebKit/Source/platform" ] 19 visibility = [ "//third_party/WebKit/Source/platform" ]
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 ":make_platform_loader_generated_fetch_initiator_type_names", 74 ":make_platform_loader_generated_fetch_initiator_type_names",
75 ] 75 ]
76 76
77 public_deps = [ 77 public_deps = [
78 "//base", 78 "//base",
79 "//skia", 79 "//skia",
80 "//third_party/icu", 80 "//third_party/icu",
81 "//v8", 81 "//v8",
82 ] 82 ]
83 } 83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698