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 38 matching lines...) Loading... |
49 'slide_animation_unittest.cc', | 49 'slide_animation_unittest.cc', |
50 'sql/connection_unittest.cc', | 50 'sql/connection_unittest.cc', |
51 'sql/statement_unittest.cc', | 51 'sql/statement_unittest.cc', |
52 'sql/transaction_unittest.cc', | 52 'sql/transaction_unittest.cc', |
53 'system_monitor_unittest.cc', | 53 'system_monitor_unittest.cc', |
54 'test_suite.h', | 54 'test_suite.h', |
55 'test/data/resource.h', | 55 'test/data/resource.h', |
56 'text_elider_unittest.cc', | 56 'text_elider_unittest.cc', |
57 'tree_node_iterator_unittest.cc', | 57 'tree_node_iterator_unittest.cc', |
58 'tree_node_model_unittest.cc', | 58 'tree_node_model_unittest.cc', |
59 'view_prop_unittest.cc', | |
60 'win_util_unittest.cc', | 59 'win_util_unittest.cc', |
61 ], | 60 ], |
62 'include_dirs': [ | 61 'include_dirs': [ |
63 '..', | 62 '..', |
64 ], | 63 ], |
65 'conditions': [ | 64 'conditions': [ |
66 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 65 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
67 'sources': [ | 66 'sources': [ |
68 'gtk_dnd_util_unittest.cc', | 67 'gtk_dnd_util_unittest.cc', |
69 ], | 68 ], |
70 'dependencies': [ | 69 'dependencies': [ |
71 'app_unittest_strings', | 70 'app_unittest_strings', |
72 '../build/linux/system.gyp:gtk', | 71 '../build/linux/system.gyp:gtk', |
73 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 72 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
74 ], | 73 ], |
75 }], | 74 }], |
76 ['OS!="win"', { | 75 ['OS!="win"', { |
77 'sources!': [ | 76 'sources!': [ |
78 'os_exchange_data_win_unittest.cc', | 77 'os_exchange_data_win_unittest.cc', |
79 'view_prop_unittest.cc', | |
80 'win_util_unittest.cc', | 78 'win_util_unittest.cc', |
81 ], | 79 ], |
82 }], | 80 }], |
83 ['OS =="linux" or OS =="freebsd"', { | 81 ['OS =="linux" or OS =="freebsd"', { |
84 'conditions': [ | 82 'conditions': [ |
85 ['linux_use_tcmalloc==1', { | 83 ['linux_use_tcmalloc==1', { |
86 'dependencies': [ | 84 'dependencies': [ |
87 '../base/allocator/allocator.gyp:allocator', | 85 '../base/allocator/allocator.gyp:allocator', |
88 ], | 86 ], |
89 }], | 87 }], |
(...skipping 123 matching lines...) Loading... |
213 }], | 211 }], |
214 }], | 212 }], |
215 ], | 213 ], |
216 } | 214 } |
217 | 215 |
218 # Local Variables: | 216 # Local Variables: |
219 # tab-width:2 | 217 # tab-width:2 |
220 # indent-tabs-mode:nil | 218 # indent-tabs-mode:nil |
221 # End: | 219 # End: |
222 # vim: set expandtab tabstop=2 shiftwidth=2: | 220 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |