OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 18 matching lines...) Expand all Loading... |
29 }, | 29 }, |
30 { | 30 { |
31 'target_name': 'content_unittests', | 31 'target_name': 'content_unittests', |
32 'type': 'executable', | 32 'type': 'executable', |
33 'dependencies': [ | 33 'dependencies': [ |
34 'content_browser', | 34 'content_browser', |
35 'content_plugin', | 35 'content_plugin', |
36 'content_renderer', | 36 'content_renderer', |
37 'test_support_content', | 37 'test_support_content', |
38 '../base/base.gyp:test_support_base', | 38 '../base/base.gyp:test_support_base', |
| 39 '../crypto/crypto.gyp:crypto', |
39 '../media/media.gyp:media_test_support', | 40 '../media/media.gyp:media_test_support', |
40 '../net/net.gyp:net_test_support', | 41 '../net/net.gyp:net_test_support', |
41 '../skia/skia.gyp:skia', | 42 '../skia/skia.gyp:skia', |
42 '../testing/gmock.gyp:gmock', | 43 '../testing/gmock.gyp:gmock', |
43 '../testing/gtest.gyp:gtest', | 44 '../testing/gtest.gyp:gtest', |
44 '../third_party/libjingle/libjingle.gyp:libjingle', | 45 '../third_party/libjingle/libjingle.gyp:libjingle', |
45 ], | 46 ], |
46 'include_dirs': [ | 47 'include_dirs': [ |
47 '..', | 48 '..', |
48 ], | 49 ], |
(...skipping 26 matching lines...) Expand all Loading... |
75 }], | 76 }], |
76 ['OS=="win" and win_use_allocator_shim==1', { | 77 ['OS=="win" and win_use_allocator_shim==1', { |
77 'dependencies': [ | 78 'dependencies': [ |
78 '../base/allocator/allocator.gyp:allocator', | 79 '../base/allocator/allocator.gyp:allocator', |
79 ], | 80 ], |
80 }], | 81 }], |
81 ], | 82 ], |
82 }, | 83 }, |
83 ], | 84 ], |
84 } | 85 } |
OLD | NEW |