Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: components/url_formatter/top_domains/BUILD.gn

Issue 2784933002: Mitigate spoofing attempt using Latin letters. (Closed)
Patch Set: add back U+04CF (ÓŹ) -> 'l' map Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698