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

Side by Side Diff: components/data_reduction_proxy.gypi

Issue 271793003: components: Extract pref_registry component out of user_prefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 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/components.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 { 8 {
9 'target_name': 'data_reduction_proxy_browser', 9 'target_name': 'data_reduction_proxy_browser',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 'data_reduction_proxy_common',
13 '../base/base.gyp:base', 12 '../base/base.gyp:base',
14 '../crypto/crypto.gyp:crypto', 13 '../crypto/crypto.gyp:crypto',
15 '../net/net.gyp:net', 14 '../net/net.gyp:net',
15 'data_reduction_proxy_common',
16 'pref_registry',
16 ], 17 ],
17 'include_dirs': [ 18 'include_dirs': [
18 '..', 19 '..',
19 ], 20 ],
20 'sources': [ 21 'sources': [
21 'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler. cc', 22 'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler. cc',
22 'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler. h', 23 'data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler. h',
23 'data_reduction_proxy/browser/data_reduction_proxy_config_service.cc', 24 'data_reduction_proxy/browser/data_reduction_proxy_config_service.cc',
24 'data_reduction_proxy/browser/data_reduction_proxy_config_service.h', 25 'data_reduction_proxy/browser/data_reduction_proxy_config_service.h',
25 'data_reduction_proxy/browser/data_reduction_proxy_configurator.h', 26 'data_reduction_proxy/browser/data_reduction_proxy_configurator.h',
26 'data_reduction_proxy/browser/data_reduction_proxy_metrics.cc', 27 'data_reduction_proxy/browser/data_reduction_proxy_metrics.cc',
27 'data_reduction_proxy/browser/data_reduction_proxy_metrics.h', 28 'data_reduction_proxy/browser/data_reduction_proxy_metrics.h',
28 'data_reduction_proxy/browser/data_reduction_proxy_prefs.cc', 29 'data_reduction_proxy/browser/data_reduction_proxy_prefs.cc',
29 'data_reduction_proxy/browser/data_reduction_proxy_prefs.h', 30 'data_reduction_proxy/browser/data_reduction_proxy_prefs.h',
30 'data_reduction_proxy/browser/data_reduction_proxy_settings.cc', 31 'data_reduction_proxy/browser/data_reduction_proxy_settings.cc',
31 'data_reduction_proxy/browser/data_reduction_proxy_settings.h', 32 'data_reduction_proxy/browser/data_reduction_proxy_settings.h',
32 'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.cc' , 33 'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.cc' ,
33 'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.h', 34 'data_reduction_proxy/browser/http_auth_handler_data_reduction_proxy.h',
34 ], 35 ],
35 }, 36 },
36 { 37 {
37 'target_name': 'data_reduction_proxy_common', 38 'target_name': 'data_reduction_proxy_common',
38 'type': 'static_library', 39 'type': 'static_library',
39 'dependencies': [ 40 'dependencies': [
40 '../base/base.gyp:base', 41 '../base/base.gyp:base',
41 '../components/components.gyp:user_prefs',
42 ], 42 ],
43 'include_dirs': [ 43 'include_dirs': [
44 '..', 44 '..',
45 ], 45 ],
46 'sources': [ 46 'sources': [
47 'data_reduction_proxy/common/data_reduction_proxy_pref_names.cc', 47 'data_reduction_proxy/common/data_reduction_proxy_pref_names.cc',
48 'data_reduction_proxy/common/data_reduction_proxy_pref_names.h', 48 'data_reduction_proxy/common/data_reduction_proxy_pref_names.h',
49 'data_reduction_proxy/common/data_reduction_proxy_switches.cc', 49 'data_reduction_proxy/common/data_reduction_proxy_switches.cc',
50 'data_reduction_proxy/common/data_reduction_proxy_switches.h', 50 'data_reduction_proxy/common/data_reduction_proxy_switches.h',
51 ], 51 ],
52 }, 52 },
53 { 53 {
54 'target_name': 'data_reduction_proxy_test_support', 54 'target_name': 'data_reduction_proxy_test_support',
55 'type': 'static_library', 55 'type': 'static_library',
56 'dependencies' : [ 56 'dependencies' : [
57 'data_reduction_proxy_browser',
58 'data_reduction_proxy_common',
59 '../base/base.gyp:base', 57 '../base/base.gyp:base',
60 '../net/net.gyp:net', 58 '../net/net.gyp:net',
61 '../testing/gmock.gyp:gmock', 59 '../testing/gmock.gyp:gmock',
62 '../testing/gtest.gyp:gtest', 60 '../testing/gtest.gyp:gtest',
61 'data_reduction_proxy_browser',
62 'data_reduction_proxy_common',
63 ], 63 ],
64 'include_dirs': [ 64 'include_dirs': [
65 '..', 65 '..',
66 ], 66 ],
67 'sources': [ 67 'sources': [
68 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.c c', 68 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.c c',
69 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h ', 69 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h ',
70 ], 70 ],
71 }, 71 },
72 ], 72 ],
73 } 73 }
74 74
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/data_reduction_proxy/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698