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

Side by Side Diff: components/data_reduction_proxy.gypi

Issue 684223003: Data Reduction Proxy Interstitials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Thestig comment and test fix Created 5 years, 10 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/data_reduction_proxy/DEPS » ('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 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 { 6 {
7 'targets': [ 7 'targets': [
8 {
9 # GN Version: //components/data_reduction_proxy/content
10 'target_name': 'data_reduction_proxy_content',
11 'type': 'static_library',
12 'dependencies': [
13 '../base/base.gyp:base',
14 '../content/content.gyp:content_browser',
15 '../skia/skia.gyp:skia',
16 ],
17 'include_dirs': [
18 '..',
19 ],
20 'sources': [
21 # Note: sources list duplicated in GN build.
22 'data_reduction_proxy/content/browser/content_data_reduction_proxy_debug _ui_service.cc',
23 'data_reduction_proxy/content/browser/content_data_reduction_proxy_debug _ui_service.h',
24 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_resourc e_throttle.cc',
25 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_resourc e_throttle.h',
26 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_ui_mana ger.cc',
27 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_ui_mana ger.h',
28 ],
29 },
8 { 30 {
9 # GN version: //components/data_reduction_proxy/core/browser 31 # GN version: //components/data_reduction_proxy/core/browser
10 'target_name': 'data_reduction_proxy_core_browser', 32 'target_name': 'data_reduction_proxy_core_browser',
11 'type': 'static_library', 33 'type': 'static_library',
12 'conditions': [ 34 'conditions': [
13 ['OS != "android" and OS != "ios"', { 35 ['OS != "android" and OS != "ios"', {
14 'dependencies' : [ 36 'dependencies' : [
15 '../google_apis/google_apis.gyp:google_apis', 37 '../google_apis/google_apis.gyp:google_apis',
16 ] 38 ]
17 }], 39 }],
(...skipping 11 matching lines...) Expand all
29 '..', 51 '..',
30 ], 52 ],
31 'sources': [ 53 'sources': [
32 # Note: sources list duplicated in GN build. 54 # Note: sources list duplicated in GN build.
33 'data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol. cc', 55 'data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol. cc',
34 'data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol. h', 56 'data_reduction_proxy/core/browser/data_reduction_proxy_bypass_protocol. h',
35 'data_reduction_proxy/core/browser/data_reduction_proxy_config.cc', 57 'data_reduction_proxy/core/browser/data_reduction_proxy_config.cc',
36 'data_reduction_proxy/core/browser/data_reduction_proxy_config.h', 58 'data_reduction_proxy/core/browser/data_reduction_proxy_config.h',
37 'data_reduction_proxy/core/browser/data_reduction_proxy_configurator.cc' , 59 'data_reduction_proxy/core/browser/data_reduction_proxy_configurator.cc' ,
38 'data_reduction_proxy/core/browser/data_reduction_proxy_configurator.h', 60 'data_reduction_proxy/core/browser/data_reduction_proxy_configurator.h',
61 "data_reduction_proxy/core/browser/data_reduction_proxy_debug_ui_service .h",
39 'data_reduction_proxy/core/browser/data_reduction_proxy_delegate.cc', 62 'data_reduction_proxy/core/browser/data_reduction_proxy_delegate.cc',
40 'data_reduction_proxy/core/browser/data_reduction_proxy_delegate.h', 63 'data_reduction_proxy/core/browser/data_reduction_proxy_delegate.h',
41 'data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.cc', 64 'data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.cc',
42 'data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h', 65 'data_reduction_proxy/core/browser/data_reduction_proxy_interceptor.h',
43 'data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc', 66 'data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc',
44 'data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h', 67 'data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h',
45 'data_reduction_proxy/core/browser/data_reduction_proxy_metrics.cc', 68 'data_reduction_proxy/core/browser/data_reduction_proxy_metrics.cc',
46 'data_reduction_proxy/core/browser/data_reduction_proxy_metrics.h', 69 'data_reduction_proxy/core/browser/data_reduction_proxy_metrics.h',
47 'data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate .cc', 70 'data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate .cc',
48 'data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate .h', 71 'data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate .h',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 { 112 {
90 # GN version: //components/data_reduction_proxy/core/browser:test_support 113 # GN version: //components/data_reduction_proxy/core/browser:test_support
91 'target_name': 'data_reduction_proxy_test_support', 114 'target_name': 'data_reduction_proxy_test_support',
92 'type': 'static_library', 115 'type': 'static_library',
93 'dependencies' : [ 116 'dependencies' : [
94 '../base/base.gyp:base', 117 '../base/base.gyp:base',
95 '../net/net.gyp:net', 118 '../net/net.gyp:net',
96 '../net/net.gyp:net_test_support', 119 '../net/net.gyp:net_test_support',
97 '../testing/gmock.gyp:gmock', 120 '../testing/gmock.gyp:gmock',
98 '../testing/gtest.gyp:gtest', 121 '../testing/gtest.gyp:gtest',
122 'data_reduction_proxy_content',
99 'data_reduction_proxy_core_browser', 123 'data_reduction_proxy_core_browser',
100 'data_reduction_proxy_core_common', 124 'data_reduction_proxy_core_common',
101 ], 125 ],
102 'include_dirs': [ 126 'include_dirs': [
103 '..', 127 '..',
104 ], 128 ],
105 'sources': [ 129 'sources': [
106 # Note: sources list duplicated in GN build. 130 # Note: sources list duplicated in GN build.
107 'data_reduction_proxy/core/browser/data_reduction_proxy_config_test_util s.cc', 131 'data_reduction_proxy/core/browser/data_reduction_proxy_config_test_util s.cc',
108 'data_reduction_proxy/core/browser/data_reduction_proxy_config_test_util s.h', 132 'data_reduction_proxy/core/browser/data_reduction_proxy_config_test_util s.h',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 'includes': [ 169 'includes': [
146 '../build/util/version.gypi', 170 '../build/util/version.gypi',
147 ], 171 ],
148 }, 172 },
149 ], 173 ],
150 }, 174 },
151 175
152 ], 176 ],
153 } 177 }
154 178
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/data_reduction_proxy/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698