OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 'test/run_all_unittests.cc', | 58 'test/run_all_unittests.cc', |
59 ], | 59 ], |
60 'conditions': [ | 60 'conditions': [ |
61 ['use_aura==1', { | 61 ['use_aura==1', { |
62 'dependencies': [ | 62 'dependencies': [ |
63 '../../base/base.gyp:test_support_base', | 63 '../../base/base.gyp:test_support_base', |
64 '../aura/aura.gyp:aura_test_support', | 64 '../aura/aura.gyp:aura_test_support', |
65 '../compositor/compositor.gyp:compositor', | 65 '../compositor/compositor.gyp:compositor', |
66 '../compositor/compositor.gyp:compositor_test_support', | 66 '../compositor/compositor.gyp:compositor_test_support', |
67 ], | 67 ], |
| 68 }, { |
| 69 'dependencies': [ |
| 70 '../../base/base.gyp:run_all_unittests', |
| 71 ], |
| 72 'sources!': [ |
| 73 'test/run_all_unittests.cc', |
| 74 ], |
68 }], | 75 }], |
69 # See http://crbug.com/162998#c4 for why this is needed. | 76 # See http://crbug.com/162998#c4 for why this is needed. |
70 ['OS=="linux" and linux_use_tcmalloc==1', { | 77 ['OS=="linux" and linux_use_tcmalloc==1', { |
71 'dependencies': [ | 78 'dependencies': [ |
72 '../../base/allocator/allocator.gyp:allocator', | 79 '../../base/allocator/allocator.gyp:allocator', |
73 ], | 80 ], |
74 }], | 81 }], |
75 ], | 82 ], |
76 }, | 83 }, |
77 ], | 84 ], |
(...skipping 11 matching lines...) Expand all Loading... |
89 'snapshot', | 96 'snapshot', |
90 ], | 97 ], |
91 'include_dirs': [ | 98 'include_dirs': [ |
92 '../..', | 99 '../..', |
93 ], | 100 ], |
94 }, | 101 }, |
95 ], | 102 ], |
96 }], | 103 }], |
97 ], | 104 ], |
98 } | 105 } |
OLD | NEW |