| 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 2584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2595 | 2595 |
| 2596 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 2596 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2597 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 2597 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 2598 deps = [ | 2598 deps = [ |
| 2599 ":net", | 2599 ":net", |
| 2600 ":test_support", | 2600 ":test_support", |
| 2601 "//base", | 2601 "//base", |
| 2602 "//build/config/sanitizers:deps", | 2602 "//build/config/sanitizers:deps", |
| 2603 "//build/win:default_exe_manifest", | 2603 "//build/win:default_exe_manifest", |
| 2604 ] | 2604 ] |
| 2605 |
| 2606 if (is_mac) { |
| 2607 libs = [ "Security.framework" ] |
| 2608 } |
| 2605 } | 2609 } |
| 2606 | 2610 |
| 2607 executable("crash_cache") { | 2611 executable("crash_cache") { |
| 2608 testonly = true | 2612 testonly = true |
| 2609 sources = [ | 2613 sources = [ |
| 2610 "tools/crash_cache/crash_cache.cc", | 2614 "tools/crash_cache/crash_cache.cc", |
| 2611 ] | 2615 ] |
| 2612 | 2616 |
| 2613 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 2617 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2614 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 2618 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| (...skipping 3090 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5705 "tools/transport_security_state_generator/trie/trie_writer.cc", | 5709 "tools/transport_security_state_generator/trie/trie_writer.cc", |
| 5706 "tools/transport_security_state_generator/trie/trie_writer.h", | 5710 "tools/transport_security_state_generator/trie/trie_writer.h", |
| 5707 ] | 5711 ] |
| 5708 deps = [ | 5712 deps = [ |
| 5709 "//base", | 5713 "//base", |
| 5710 "//crypto", | 5714 "//crypto", |
| 5711 "//third_party/boringssl", | 5715 "//third_party/boringssl", |
| 5712 ] | 5716 ] |
| 5713 } | 5717 } |
| 5714 } | 5718 } |
| OLD | NEW |