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

Side by Side Diff: components/data_reduction_proxy.gypi

Issue 382663002: Add components and CLD to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android Created 6 years, 5 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
« no previous file with comments | « components/captive_portal/BUILD.gn ('k') | components/data_reduction_proxy/browser/BUILD.gn » ('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 { 8 {
9 # GN version: //components/data_reduction_proxy/browser
9 'target_name': 'data_reduction_proxy_browser', 10 'target_name': 'data_reduction_proxy_browser',
10 'type': 'static_library', 11 'type': 'static_library',
11 'dependencies': [ 12 'dependencies': [
12 '../base/base.gyp:base', 13 '../base/base.gyp:base',
13 '../crypto/crypto.gyp:crypto', 14 '../crypto/crypto.gyp:crypto',
14 '../net/net.gyp:net', 15 '../net/net.gyp:net',
15 'data_reduction_proxy_common', 16 'data_reduction_proxy_common',
16 'pref_registry', 17 'pref_registry',
17 ], 18 ],
18 'include_dirs': [ 19 'include_dirs': [
19 '..', 20 '..',
20 ], 21 ],
21 'sources': [ 22 'sources': [
23 # Note: sources list duplicated in GN build.
22 'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler. cc', 24 'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler. cc',
23 'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler. h', 25 'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler. h',
24 'data_reduction_proxy/browser/data_reduction_proxy_config_service.cc', 26 'data_reduction_proxy/browser/data_reduction_proxy_config_service.cc',
25 'data_reduction_proxy/browser/data_reduction_proxy_config_service.h', 27 'data_reduction_proxy/browser/data_reduction_proxy_config_service.h',
26 'data_reduction_proxy/browser/data_reduction_proxy_configurator.h', 28 'data_reduction_proxy/browser/data_reduction_proxy_configurator.h',
27 'data_reduction_proxy/browser/data_reduction_proxy_metrics.cc', 29 'data_reduction_proxy/browser/data_reduction_proxy_metrics.cc',
28 'data_reduction_proxy/browser/data_reduction_proxy_metrics.h', 30 'data_reduction_proxy/browser/data_reduction_proxy_metrics.h',
29 'data_reduction_proxy/browser/data_reduction_proxy_params.cc', 31 'data_reduction_proxy/browser/data_reduction_proxy_params.cc',
30 'data_reduction_proxy/browser/data_reduction_proxy_params.h', 32 'data_reduction_proxy/browser/data_reduction_proxy_params.h',
31 'data_reduction_proxy/browser/data_reduction_proxy_prefs.cc', 33 'data_reduction_proxy/browser/data_reduction_proxy_prefs.cc',
32 'data_reduction_proxy/browser/data_reduction_proxy_prefs.h', 34 'data_reduction_proxy/browser/data_reduction_proxy_prefs.h',
33 'data_reduction_proxy/browser/data_reduction_proxy_protocol.cc', 35 'data_reduction_proxy/browser/data_reduction_proxy_protocol.cc',
34 'data_reduction_proxy/browser/data_reduction_proxy_protocol.h', 36 'data_reduction_proxy/browser/data_reduction_proxy_protocol.h',
35 'data_reduction_proxy/browser/data_reduction_proxy_settings.cc', 37 'data_reduction_proxy/browser/data_reduction_proxy_settings.cc',
36 'data_reduction_proxy/browser/data_reduction_proxy_settings.h', 38 'data_reduction_proxy/browser/data_reduction_proxy_settings.h',
37 'data_reduction_proxy/browser/data_reduction_proxy_usage_stats.cc', 39 'data_reduction_proxy/browser/data_reduction_proxy_usage_stats.cc',
38 'data_reduction_proxy/browser/data_reduction_proxy_usage_stats.h', 40 'data_reduction_proxy/browser/data_reduction_proxy_usage_stats.h',
39 ], 41 ],
40 }, 42 },
41 { 43 {
44 # GN version: //components/data_reduction_proxy/common
42 'target_name': 'data_reduction_proxy_common', 45 'target_name': 'data_reduction_proxy_common',
43 'type': 'static_library', 46 'type': 'static_library',
44 'dependencies': [ 47 'dependencies': [
45 '../base/base.gyp:base', 48 '../base/base.gyp:base',
46 ], 49 ],
47 'include_dirs': [ 50 'include_dirs': [
48 '..', 51 '..',
49 ], 52 ],
50 'sources': [ 53 'sources': [
54 # Note: sources list duplicated in GN build.
51 'data_reduction_proxy/common/data_reduction_proxy_headers.cc', 55 'data_reduction_proxy/common/data_reduction_proxy_headers.cc',
52 'data_reduction_proxy/common/data_reduction_proxy_headers.h', 56 'data_reduction_proxy/common/data_reduction_proxy_headers.h',
53 'data_reduction_proxy/common/data_reduction_proxy_pref_names.cc', 57 'data_reduction_proxy/common/data_reduction_proxy_pref_names.cc',
54 'data_reduction_proxy/common/data_reduction_proxy_pref_names.h', 58 'data_reduction_proxy/common/data_reduction_proxy_pref_names.h',
55 'data_reduction_proxy/common/data_reduction_proxy_switches.cc', 59 'data_reduction_proxy/common/data_reduction_proxy_switches.cc',
56 'data_reduction_proxy/common/data_reduction_proxy_switches.h', 60 'data_reduction_proxy/common/data_reduction_proxy_switches.h',
57 ], 61 ],
58 }, 62 },
59 { 63 {
64 # GN version: //components/data_reduction_proxy/browser:test_support
60 'target_name': 'data_reduction_proxy_test_support', 65 'target_name': 'data_reduction_proxy_test_support',
61 'type': 'static_library', 66 'type': 'static_library',
62 'dependencies' : [ 67 'dependencies' : [
63 '../base/base.gyp:base', 68 '../base/base.gyp:base',
64 '../net/net.gyp:net', 69 '../net/net.gyp:net',
65 '../net/net.gyp:net_test_support', 70 '../net/net.gyp:net_test_support',
66 '../testing/gmock.gyp:gmock', 71 '../testing/gmock.gyp:gmock',
67 '../testing/gtest.gyp:gtest', 72 '../testing/gtest.gyp:gtest',
68 'data_reduction_proxy_browser', 73 'data_reduction_proxy_browser',
69 'data_reduction_proxy_common', 74 'data_reduction_proxy_common',
70 ], 75 ],
71 'include_dirs': [ 76 'include_dirs': [
72 '..', 77 '..',
73 ], 78 ],
74 'sources': [ 79 'sources': [
80 # Note: sources list duplicated in GN build.
75 'data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.cc' , 81 'data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.cc' ,
76 'data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.h', 82 'data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.h',
77 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.c c', 83 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.c c',
78 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h ', 84 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h ',
79 ], 85 ],
80 }, 86 },
81 ], 87 ],
82 } 88 }
83 89
OLDNEW
« no previous file with comments | « components/captive_portal/BUILD.gn ('k') | components/data_reduction_proxy/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698