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

Side by Side Diff: net/net.gyp

Issue 1412343008: Factor out the string lookup code from registry_controlled_domains (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 1 month 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
« no previous file with comments | « net/base/registry_controlled_domains/registry_controlled_domain.cc ('k') | net/net.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'linux_link_kerberos%': 0, 8 'linux_link_kerberos%': 0,
9 'conditions': [ 9 'conditions': [
10 ['chromeos==1 or embedded==1 or OS=="ios"', { 10 ['chromeos==1 or embedded==1 or OS=="ios"', {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'base/registry_controlled_domains/effective_tld_names_unittest6.gperf', 55 'base/registry_controlled_domains/effective_tld_names_unittest6.gperf',
56 ], 56 ],
57 'rules': [ 57 'rules': [
58 { 58 {
59 'rule_name': 'dafsa', 59 'rule_name': 'dafsa',
60 'extension': 'gperf', 60 'extension': 'gperf',
61 'outputs': [ 61 'outputs': [
62 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_R OOT)-inc.cc', 62 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_R OOT)-inc.cc',
63 ], 63 ],
64 'inputs': [ 64 'inputs': [
65 'tools/tld_cleanup/make_dafsa.py', 65 'tools/dafsa/make_dafsa.py',
66 ], 66 ],
67 'action': [ 67 'action': [
68 'python', 68 'python',
69 'tools/tld_cleanup/make_dafsa.py', 69 'tools/dafsa/make_dafsa.py',
70 '<(RULE_INPUT_PATH)', 70 '<(RULE_INPUT_PATH)',
71 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_R OOT)-inc.cc', 71 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_R OOT)-inc.cc',
72 ], 72 ],
73 }, 73 },
74 ], 74 ],
75 'direct_dependent_settings': { 75 'direct_dependent_settings': {
76 'include_dirs': [ 76 'include_dirs': [
77 '<(SHARED_INTERMEDIATE_DIR)' 77 '<(SHARED_INTERMEDIATE_DIR)'
78 ], 78 ],
79 }, 79 },
(...skipping 1551 matching lines...) Expand 10 before | Expand all | Expand 10 after
1631 '../build/isolate.gypi', 1631 '../build/isolate.gypi',
1632 ], 1632 ],
1633 'sources': [ 1633 'sources': [
1634 'net_unittests.isolate', 1634 'net_unittests.isolate',
1635 ], 1635 ],
1636 }, 1636 },
1637 ], 1637 ],
1638 }], 1638 }],
1639 ], 1639 ],
1640 } 1640 }
OLDNEW
« no previous file with comments | « net/base/registry_controlled_domains/registry_controlled_domain.cc ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698