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

Side by Side Diff: components/domain_reliability.gypi

Issue 491753003: Domain Reliability: Don't upload when metrics reporting is off. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Block uploads in uploader, not dispatcher Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/domain_reliability 8 # GN version: //components/domain_reliability
9 'target_name': 'domain_reliability', 9 'target_name': 'domain_reliability',
10 'type': '<(component)', 10 'type': '<(component)',
11 'dependencies': [ 11 'dependencies': [
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../base/base.gyp:base_prefs',
13 '../components/components.gyp:keyed_service_core', 14 '../components/components.gyp:keyed_service_core',
14 '../content/content.gyp:content_browser', 15 '../content/content.gyp:content_browser',
15 '../net/net.gyp:net', 16 '../net/net.gyp:net',
16 '../url/url.gyp:url_lib', 17 '../url/url.gyp:url_lib',
17 ], 18 ],
18 'include_dirs': [ 19 'include_dirs': [
19 '..', 20 '..',
20 ], 21 ],
21 'defines': [ 22 'defines': [
22 'DOMAIN_RELIABILITY_IMPLEMENTATION', 23 'DOMAIN_RELIABILITY_IMPLEMENTATION',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 '<(bake_in_configs_script)', 103 '<(bake_in_configs_script)',
103 '<@(baked_in_configs)', 104 '<@(baked_in_configs)',
104 '<(baked_in_configs_cc)'], 105 '<(baked_in_configs_cc)'],
105 'process_outputs_as_sources': 1, 106 'process_outputs_as_sources': 1,
106 'message': 'Baking in Domain Reliability configs', 107 'message': 'Baking in Domain Reliability configs',
107 }, 108 },
108 ], 109 ],
109 }, 110 },
110 ], 111 ],
111 } 112 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698