OLD | NEW |
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 # TODO(andrew): consider moving test_support to src/base/test. | 9 # TODO(andrew): consider moving test_support to src/base/test. |
10 { | 10 { |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 }, | 96 }, |
97 { | 97 { |
98 'target_name': 'test_main', | 98 'target_name': 'test_main', |
99 'type': 'static_library', | 99 'type': 'static_library', |
100 'sources': [ | 100 'sources': [ |
101 'test_main.cc', | 101 'test_main.cc', |
102 ], | 102 ], |
103 'dependencies': [ | 103 'dependencies': [ |
104 'field_trial', | 104 'field_trial', |
105 'histogram', | 105 'histogram', |
| 106 'test_support', |
106 '<(DEPTH)/testing/gtest.gyp:gtest', | 107 '<(DEPTH)/testing/gtest.gyp:gtest', |
107 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 108 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
108 ], | 109 ], |
109 }, | 110 }, |
110 { | 111 { |
111 'target_name': 'test_support', | 112 'target_name': 'test_support', |
112 'type': 'static_library', | 113 'type': 'static_library', |
113 'dependencies': [ | 114 'dependencies': [ |
114 '<(DEPTH)/testing/gtest.gyp:gtest', | 115 '<(DEPTH)/testing/gtest.gyp:gtest', |
115 '<(DEPTH)/testing/gmock.gyp:gmock', | 116 '<(DEPTH)/testing/gmock.gyp:gmock', |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 '../build/isolate.gypi', | 242 '../build/isolate.gypi', |
242 ], | 243 ], |
243 'sources': [ | 244 'sources': [ |
244 'test_support_unittests.isolate', | 245 'test_support_unittests.isolate', |
245 ], | 246 ], |
246 }, | 247 }, |
247 ], | 248 ], |
248 }], | 249 }], |
249 ], | 250 ], |
250 } | 251 } |
OLD | NEW |