Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 if (current_toolchain == host_toolchain) { | |
| 6 executable("validate_subdomain_origin") { | |
| 7 output_name = "validate_subdomain_origin" | |
| 8 sources = [ | |
| 9 "validate_subdomain_origin.cc", | |
| 10 ] | |
| 11 | |
| 12 configs += [ "//build/config/compiler:wexit_time_destructors" ] | |
| 13 | |
| 14 deps = [ | |
| 15 "//base", | |
| 16 "//net", | |
| 17 "//url", | |
| 18 ] | |
| 19 } | |
| 20 } | |
| OLD | NEW |