| 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.json5" ] | 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" ] |
| 20 | 20 |
| 21 sources = [ | 21 sources = [ |
| 22 "LinkHeader.cpp", |
| 23 "LinkHeader.h", |
| 22 "fetch/AccessControlStatus.h", | 24 "fetch/AccessControlStatus.h", |
| 23 "fetch/CachedMetadata.cpp", | 25 "fetch/CachedMetadata.cpp", |
| 24 "fetch/CachedMetadata.h", | 26 "fetch/CachedMetadata.h", |
| 25 "fetch/CachedMetadataHandler.h", | 27 "fetch/CachedMetadataHandler.h", |
| 26 "fetch/ClientHintsPreferences.cpp", | 28 "fetch/ClientHintsPreferences.cpp", |
| 27 "fetch/ClientHintsPreferences.h", | 29 "fetch/ClientHintsPreferences.h", |
| 28 "fetch/CrossOriginAccessControl.cpp", | 30 "fetch/CrossOriginAccessControl.cpp", |
| 29 "fetch/CrossOriginAccessControl.h", | 31 "fetch/CrossOriginAccessControl.h", |
| 30 "fetch/FetchContext.cpp", | 32 "fetch/FetchContext.cpp", |
| 31 "fetch/FetchContext.h", | 33 "fetch/FetchContext.h", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "//third_party/WebKit/Source:config", | 67 "//third_party/WebKit/Source:config", |
| 66 "//third_party/WebKit/Source:non_test_config", | 68 "//third_party/WebKit/Source:non_test_config", |
| 67 "//third_party/WebKit/Source:inside_blink", | 69 "//third_party/WebKit/Source:inside_blink", |
| 68 | 70 |
| 69 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 71 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 70 "//build/config/compiler:no_size_t_to_int_warning", | 72 "//build/config/compiler:no_size_t_to_int_warning", |
| 71 ] | 73 ] |
| 72 | 74 |
| 73 deps = [ | 75 deps = [ |
| 74 ":make_platform_loader_generated_fetch_initiator_type_names", | 76 ":make_platform_loader_generated_fetch_initiator_type_names", |
| 77 "//components/link_header_util:link_header_util", |
| 75 ] | 78 ] |
| 76 | 79 |
| 77 public_deps = [ | 80 public_deps = [ |
| 78 "//base", | 81 "//base", |
| 79 "//skia", | 82 "//skia", |
| 80 "//third_party/icu", | 83 "//third_party/icu", |
| 81 "//v8", | 84 "//v8", |
| 82 ] | 85 ] |
| 83 } | 86 } |
| OLD | NEW |