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

Side by Side Diff: net/net.gyp

Issue 1303973009: [DO NOT COMMIT] Re-use the dafsa code for s-w-r histograms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add histograms to histograms.xml Created 5 years, 2 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
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'target_name': 'net_derived_sources', 46 'target_name': 'net_derived_sources',
47 'type': 'none', 47 'type': 'none',
48 'sources': [ 48 'sources': [
49 'base/registry_controlled_domains/effective_tld_names.gperf', 49 'base/registry_controlled_domains/effective_tld_names.gperf',
50 'base/registry_controlled_domains/effective_tld_names_unittest1.gperf', 50 'base/registry_controlled_domains/effective_tld_names_unittest1.gperf',
51 'base/registry_controlled_domains/effective_tld_names_unittest2.gperf', 51 'base/registry_controlled_domains/effective_tld_names_unittest2.gperf',
52 'base/registry_controlled_domains/effective_tld_names_unittest3.gperf', 52 'base/registry_controlled_domains/effective_tld_names_unittest3.gperf',
53 'base/registry_controlled_domains/effective_tld_names_unittest4.gperf', 53 'base/registry_controlled_domains/effective_tld_names_unittest4.gperf',
54 'base/registry_controlled_domains/effective_tld_names_unittest5.gperf', 54 'base/registry_controlled_domains/effective_tld_names_unittest5.gperf',
55 'base/registry_controlled_domains/effective_tld_names_unittest6.gperf', 55 'base/registry_controlled_domains/effective_tld_names_unittest6.gperf',
56 'base/swr_histogram_domains/swr_histogram_domains.gperf',
56 ], 57 ],
57 'rules': [ 58 'rules': [
58 { 59 {
59 'rule_name': 'dafsa', 60 'rule_name': 'dafsa',
60 'extension': 'gperf', 61 'extension': 'gperf',
61 'outputs': [ 62 'outputs': [
62 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_R OOT)-inc.cc', 63 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_R OOT)-inc.cc',
63 ], 64 ],
64 'inputs': [ 65 'inputs': [
65 'tools/tld_cleanup/make_dafsa.py', 66 'tools/dafsa/make_dafsa.py',
66 ], 67 ],
67 'action': [ 68 'action': [
68 'python', 69 'python',
69 'tools/tld_cleanup/make_dafsa.py', 70 'tools/dafsa/make_dafsa.py',
70 '<(RULE_INPUT_PATH)', 71 '<(RULE_INPUT_PATH)',
71 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_R OOT)-inc.cc', 72 '<(SHARED_INTERMEDIATE_DIR)/net/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_R OOT)-inc.cc',
72 ], 73 ],
73 }, 74 },
74 ], 75 ],
75 'direct_dependent_settings': { 76 'direct_dependent_settings': {
76 'include_dirs': [ 77 'include_dirs': [
77 '<(SHARED_INTERMEDIATE_DIR)' 78 '<(SHARED_INTERMEDIATE_DIR)'
78 ], 79 ],
79 }, 80 },
(...skipping 1517 matching lines...) Expand 10 before | Expand all | Expand 10 after
1597 '../build/isolate.gypi', 1598 '../build/isolate.gypi',
1598 ], 1599 ],
1599 'sources': [ 1600 'sources': [
1600 'net_unittests.isolate', 1601 'net_unittests.isolate',
1601 ], 1602 ],
1602 }, 1603 },
1603 ], 1604 ],
1604 }], 1605 }],
1605 ], 1606 ],
1606 } 1607 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698