| 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 assert(current_toolchain == host_toolchain) | 5 assert(current_toolchain == host_toolchain) |
| 6 | 6 |
| 7 source_set("transport_security_state_generator_sources") { | 7 source_set("transport_security_state_generator_sources") { |
| 8 sources = [ | 8 sources = [ |
| 9 "bit_writer.cc", | 9 "bit_writer.cc", |
| 10 "bit_writer.h", | 10 "bit_writer.h", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 ] | 55 ] |
| 56 } | 56 } |
| 57 | 57 |
| 58 executable("transport_security_state_generator") { | 58 executable("transport_security_state_generator") { |
| 59 sources = [ | 59 sources = [ |
| 60 "transport_security_state_generator.cc", | 60 "transport_security_state_generator.cc", |
| 61 ] | 61 ] |
| 62 deps = [ | 62 deps = [ |
| 63 ":transport_security_state_generator_sources", | 63 ":transport_security_state_generator_sources", |
| 64 "//base", | 64 "//base", |
| 65 "//build/config/sanitizers:deps", | 65 "//build/config:exe_and_shlib_deps", |
| 66 "//crypto", | 66 "//crypto", |
| 67 "//third_party/boringssl", | 67 "//third_party/boringssl", |
| 68 ] | 68 ] |
| 69 } | 69 } |
| OLD | NEW |