OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 # TODO: remove this helper when we have loops in GYP | 7 # TODO: remove this helper when we have loops in GYP |
8 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py',], | 8 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py',], |
9 'chromium_code': 1, | 9 'chromium_code': 1, |
10 'grit_info_cmd': ['python', '../tools/grit/grit_info.py', | 10 'grit_info_cmd': ['python', '../tools/grit/grit_info.py', |
(...skipping 18 matching lines...) Expand all Loading... |
29 'app_resources', | 29 'app_resources', |
30 '../base/base.gyp:test_support_base', | 30 '../base/base.gyp:test_support_base', |
31 '../net/net.gyp:net_test_support', | 31 '../net/net.gyp:net_test_support', |
32 '../skia/skia.gyp:skia', | 32 '../skia/skia.gyp:skia', |
33 '../testing/gmock.gyp:gmock', | 33 '../testing/gmock.gyp:gmock', |
34 '../testing/gtest.gyp:gtest', | 34 '../testing/gtest.gyp:gtest', |
35 '../third_party/icu/icu.gyp:icui18n', | 35 '../third_party/icu/icu.gyp:icui18n', |
36 '../third_party/icu/icu.gyp:icuuc', | 36 '../third_party/icu/icu.gyp:icuuc', |
37 '../third_party/libpng/libpng.gyp:libpng', | 37 '../third_party/libpng/libpng.gyp:libpng', |
38 '../third_party/zlib/zlib.gyp:zlib', | 38 '../third_party/zlib/zlib.gyp:zlib', |
39 '../ui/ui.gyp:ui_base', | |
40 '<(libjpeg_gyp_path):libjpeg', | 39 '<(libjpeg_gyp_path):libjpeg', |
41 ], | 40 ], |
42 'sources': [ | 41 'sources': [ |
| 42 '../ui/base/animation/animation_container_unittest.cc', |
| 43 '../ui/base/animation/animation_unittest.cc', |
| 44 '../ui/base/animation/multi_animation_unittest.cc', |
| 45 '../ui/base/animation/slide_animation_unittest.cc', |
| 46 '../ui/base/clipboard/clipboard_unittest.cc', |
| 47 '../ui/base/dragdrop/os_exchange_data_win_unittest.cc', |
43 'data_pack_unittest.cc', | 48 'data_pack_unittest.cc', |
44 'l10n_util_mac_unittest.mm', | 49 'l10n_util_mac_unittest.mm', |
45 'l10n_util_unittest.cc', | 50 'l10n_util_unittest.cc', |
46 'os_exchange_data_win_unittest.cc', | |
47 'run_all_unittests.cc', | 51 'run_all_unittests.cc', |
48 'sql/connection_unittest.cc', | 52 'sql/connection_unittest.cc', |
49 'sql/statement_unittest.cc', | 53 'sql/statement_unittest.cc', |
50 'sql/transaction_unittest.cc', | 54 'sql/transaction_unittest.cc', |
51 'system_monitor_unittest.cc', | 55 'system_monitor_unittest.cc', |
52 'test_suite.h', | 56 'test_suite.h', |
53 'test/data/resource.h', | 57 'test/data/resource.h', |
54 'text_elider_unittest.cc', | 58 'text_elider_unittest.cc', |
55 'tree_node_iterator_unittest.cc', | 59 'tree_node_iterator_unittest.cc', |
56 'tree_node_model_unittest.cc', | 60 'tree_node_model_unittest.cc', |
57 'view_prop_unittest.cc', | 61 'view_prop_unittest.cc', |
58 'win/win_util_unittest.cc', | 62 'win/win_util_unittest.cc', |
59 ], | 63 ], |
60 'include_dirs': [ | 64 'include_dirs': [ |
61 '..', | 65 '..', |
62 ], | 66 ], |
63 'conditions': [ | 67 'conditions': [ |
64 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 68 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
65 'sources': [ | 69 'sources': [ |
66 'gtk_dnd_util_unittest.cc', | 70 'gtk_dnd_util_unittest.cc', |
67 ], | 71 ], |
68 'dependencies': [ | 72 'dependencies': [ |
69 'app_unittest_strings', | 73 'app_unittest_strings', |
70 '../build/linux/system.gyp:gtk', | 74 '../build/linux/system.gyp:gtk', |
71 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 75 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
72 ], | 76 ], |
73 }], | 77 }], |
74 ['OS!="win"', { | 78 ['OS!="win"', { |
75 'sources!': [ | 79 'sources!': [ |
76 'os_exchange_data_win_unittest.cc', | 80 '../ui/base/dragdrop/os_exchange_data_win_unittest.cc', |
77 'view_prop_unittest.cc', | 81 'view_prop_unittest.cc', |
78 'win_util_unittest.cc', | 82 'win_util_unittest.cc', |
79 ], | 83 ], |
80 }], | 84 }], |
81 ['OS =="linux" or OS =="freebsd"', { | 85 ['OS =="linux" or OS =="freebsd"', { |
82 'conditions': [ | 86 'conditions': [ |
83 ['linux_use_tcmalloc==1', { | 87 ['linux_use_tcmalloc==1', { |
84 'dependencies': [ | 88 'dependencies': [ |
85 '../base/allocator/allocator.gyp:allocator', | 89 '../base/allocator/allocator.gyp:allocator', |
86 ], | 90 ], |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 }], | 204 }], |
201 }], | 205 }], |
202 ], | 206 ], |
203 } | 207 } |
204 | 208 |
205 # Local Variables: | 209 # Local Variables: |
206 # tab-width:2 | 210 # tab-width:2 |
207 # indent-tabs-mode:nil | 211 # indent-tabs-mode:nil |
208 # End: | 212 # End: |
209 # vim: set expandtab tabstop=2 shiftwidth=2: | 213 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |