| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 2302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2313 ] | 2313 ] |
| 2314 outputs = [ | 2314 outputs = [ |
| 2315 "{{bundle_resources_dir}}/" + | 2315 "{{bundle_resources_dir}}/" + |
| 2316 "{{source_root_relative_dir}}/{{source_file_part}}", | 2316 "{{source_root_relative_dir}}/{{source_file_part}}", |
| 2317 ] | 2317 ] |
| 2318 } | 2318 } |
| 2319 | 2319 |
| 2320 static_library("test_support") { | 2320 static_library("test_support") { |
| 2321 testonly = true | 2321 testonly = true |
| 2322 sources = [ | 2322 sources = [ |
| 2323 "../android_webview/embeddedtestserver/custom_handlers.cc", |
| 2324 "../android_webview/embeddedtestserver/custom_handlers.h", |
| 2323 "base/load_timing_info_test_util.cc", | 2325 "base/load_timing_info_test_util.cc", |
| 2324 "base/load_timing_info_test_util.h", | 2326 "base/load_timing_info_test_util.h", |
| 2325 "base/mock_file_stream.cc", | 2327 "base/mock_file_stream.cc", |
| 2326 "base/mock_file_stream.h", | 2328 "base/mock_file_stream.h", |
| 2327 "base/test_completion_callback.cc", | 2329 "base/test_completion_callback.cc", |
| 2328 "base/test_completion_callback.h", | 2330 "base/test_completion_callback.h", |
| 2329 "cert/mock_cert_verifier.cc", | 2331 "cert/mock_cert_verifier.cc", |
| 2330 "cert/mock_cert_verifier.h", | 2332 "cert/mock_cert_verifier.h", |
| 2331 "cert/mock_client_cert_verifier.cc", | 2333 "cert/mock_client_cert_verifier.cc", |
| 2332 "cert/mock_client_cert_verifier.h", | 2334 "cert/mock_client_cert_verifier.h", |
| (...skipping 3401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5734 "tools/transport_security_state_generator/trie/trie_writer.cc", | 5736 "tools/transport_security_state_generator/trie/trie_writer.cc", |
| 5735 "tools/transport_security_state_generator/trie/trie_writer.h", | 5737 "tools/transport_security_state_generator/trie/trie_writer.h", |
| 5736 ] | 5738 ] |
| 5737 deps = [ | 5739 deps = [ |
| 5738 "//base", | 5740 "//base", |
| 5739 "//crypto", | 5741 "//crypto", |
| 5740 "//third_party/boringssl", | 5742 "//third_party/boringssl", |
| 5741 ] | 5743 ] |
| 5742 } | 5744 } |
| 5743 } | 5745 } |
| OLD | NEW |