| 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...) Expand 10 before | Expand all | Expand 10 after 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', |
| 59 'win_util_unittest.cc', | 60 'win_util_unittest.cc', |
| 60 ], | 61 ], |
| 61 'include_dirs': [ | 62 'include_dirs': [ |
| 62 '..', | 63 '..', |
| 63 ], | 64 ], |
| 64 'conditions': [ | 65 'conditions': [ |
| 65 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 66 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
| 66 'sources': [ | 67 'sources': [ |
| 67 'gtk_dnd_util_unittest.cc', | 68 'gtk_dnd_util_unittest.cc', |
| 68 ], | 69 ], |
| 69 'dependencies': [ | 70 'dependencies': [ |
| 70 'app_unittest_strings', | 71 'app_unittest_strings', |
| 71 '../build/linux/system.gyp:gtk', | 72 '../build/linux/system.gyp:gtk', |
| 72 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 73 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 73 ], | 74 ], |
| 74 }], | 75 }], |
| 75 ['OS!="win"', { | 76 ['OS!="win"', { |
| 76 'sources!': [ | 77 'sources!': [ |
| 77 'os_exchange_data_win_unittest.cc', | 78 'os_exchange_data_win_unittest.cc', |
| 79 'view_prop_unittest.cc', |
| 78 'win_util_unittest.cc', | 80 'win_util_unittest.cc', |
| 79 ], | 81 ], |
| 80 }], | 82 }], |
| 81 ['OS =="linux" or OS =="freebsd"', { | 83 ['OS =="linux" or OS =="freebsd"', { |
| 82 'conditions': [ | 84 'conditions': [ |
| 83 ['linux_use_tcmalloc==1', { | 85 ['linux_use_tcmalloc==1', { |
| 84 'dependencies': [ | 86 'dependencies': [ |
| 85 '../base/allocator/allocator.gyp:allocator', | 87 '../base/allocator/allocator.gyp:allocator', |
| 86 ], | 88 ], |
| 87 }], | 89 }], |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 }], | 213 }], |
| 212 }], | 214 }], |
| 213 ], | 215 ], |
| 214 } | 216 } |
| 215 | 217 |
| 216 # Local Variables: | 218 # Local Variables: |
| 217 # tab-width:2 | 219 # tab-width:2 |
| 218 # indent-tabs-mode:nil | 220 # indent-tabs-mode:nil |
| 219 # End: | 221 # End: |
| 220 # vim: set expandtab tabstop=2 shiftwidth=2: | 222 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |