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

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: Rebase Created 6 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
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/data_reduction_proxy_resource_throttle.cc' ,
23 'data_reduction_proxy/content/data_reduction_proxy_resource_throttle.h',
24 'data_reduction_proxy/content/data_reduction_proxy_ui_manager.cc',
25 'data_reduction_proxy/content/data_reduction_proxy_ui_manager.h',
26 'data_reduction_proxy/content/data_reduction_proxy_ui_service.cc',
27 'data_reduction_proxy/content/data_reduction_proxy_ui_service.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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 { 99 {
78 # GN version: //components/data_reduction_proxy/core/browser:test_support 100 # GN version: //components/data_reduction_proxy/core/browser:test_support
79 'target_name': 'data_reduction_proxy_test_support', 101 'target_name': 'data_reduction_proxy_test_support',
80 'type': 'static_library', 102 'type': 'static_library',
81 'dependencies' : [ 103 'dependencies' : [
82 '../base/base.gyp:base', 104 '../base/base.gyp:base',
83 '../net/net.gyp:net', 105 '../net/net.gyp:net',
84 '../net/net.gyp:net_test_support', 106 '../net/net.gyp:net_test_support',
85 '../testing/gmock.gyp:gmock', 107 '../testing/gmock.gyp:gmock',
86 '../testing/gtest.gyp:gtest', 108 '../testing/gtest.gyp:gtest',
109 'data_reduction_proxy_content',
87 'data_reduction_proxy_core_browser', 110 'data_reduction_proxy_core_browser',
88 'data_reduction_proxy_core_common', 111 'data_reduction_proxy_core_common',
89 ], 112 ],
90 'include_dirs': [ 113 'include_dirs': [
91 '..', 114 '..',
92 ], 115 ],
93 'sources': [ 116 'sources': [
94 # Note: sources list duplicated in GN build. 117 # Note: sources list duplicated in GN build.
95 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut ils.cc', 118 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut ils.cc',
96 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut ils.h', 119 'data_reduction_proxy/core/browser/data_reduction_proxy_settings_test_ut ils.h',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 'includes': [ 152 'includes': [
130 '../build/util/version.gypi', 153 '../build/util/version.gypi',
131 ], 154 ],
132 }, 155 },
133 ], 156 ],
134 }, 157 },
135 158
136 ], 159 ],
137 } 160 }
138 161
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698