OLD | NEW |
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', |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'data_reduction_proxy/common/data_reduction_proxy_switches.cc', | 55 'data_reduction_proxy/common/data_reduction_proxy_switches.cc', |
56 'data_reduction_proxy/common/data_reduction_proxy_switches.h', | 56 'data_reduction_proxy/common/data_reduction_proxy_switches.h', |
57 ], | 57 ], |
58 }, | 58 }, |
59 { | 59 { |
60 'target_name': 'data_reduction_proxy_test_support', | 60 'target_name': 'data_reduction_proxy_test_support', |
61 'type': 'static_library', | 61 'type': 'static_library', |
62 'dependencies' : [ | 62 'dependencies' : [ |
63 '../base/base.gyp:base', | 63 '../base/base.gyp:base', |
64 '../net/net.gyp:net', | 64 '../net/net.gyp:net', |
| 65 '../net/net.gyp:net_test_support', |
65 '../testing/gmock.gyp:gmock', | 66 '../testing/gmock.gyp:gmock', |
66 '../testing/gtest.gyp:gtest', | 67 '../testing/gtest.gyp:gtest', |
67 'data_reduction_proxy_browser', | 68 'data_reduction_proxy_browser', |
68 'data_reduction_proxy_common', | 69 'data_reduction_proxy_common', |
69 ], | 70 ], |
70 'include_dirs': [ | 71 'include_dirs': [ |
71 '..', | 72 '..', |
72 ], | 73 ], |
73 'sources': [ | 74 'sources': [ |
74 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.c
c', | 75 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.c
c', |
75 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h
', | 76 'data_reduction_proxy/browser/data_reduction_proxy_settings_test_utils.h
', |
76 ], | 77 ], |
77 }, | 78 }, |
78 ], | 79 ], |
79 } | 80 } |
80 | 81 |
OLD | NEW |