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

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

Issue 2784933002: Mitigate spoofing attempt using Latin letters. (Closed)
Patch Set: use checked_cast and make win64 happy 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") {
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
« no previous file with comments | « components/url_formatter/idn_spoof_checker.cc ('k') | components/url_formatter/top_domains/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698