Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 action_foreach("top_domains") { | |
| 6 script = "//net/tools/dafsa/make_dafsa.py" | |
| 7 sources = [ | |
| 8 "alexa_skeletons.gperf", | |
| 9 ] | |
| 10 outputs = [ | |
| 11 "${target_gen_dir}/{{source_name_part}}-inc.cc", | |
| 12 ] | |
| 13 args = [ | |
| 14 "{{source}}", | |
| 15 rebase_path("${target_gen_dir}/{{source_name_part}}-inc.cc", | |
| 16 root_build_dir), | |
| 17 ] | |
| 18 } | |
| 19 | |
| 20 if (!is_ios && !is_android) { | |
| 21 executable("make_top_domain_gperf") { | |
|
Ryan Sleevi
2017/05/09 00:00:29
I would defer to brettw here whether there's any t
jungshik at Google
2017/05/09 19:57:39
Yes, that's to be run manually. That's why is_ios
| |
| 22 sources = [ | |
| 23 "make_top_domain_gperf.cc", | |
| 24 ] | |
| 25 | |
| 26 deps = [ | |
| 27 "//base", | |
| 28 "//base:i18n", | |
| 29 "//third_party/icu", | |
| 30 ] | |
| 31 } | |
| 32 } | |
| OLD | NEW |