| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |