| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 'text_elider_unittest.cc', | 60 'text_elider_unittest.cc', |
| 61 'view_prop_unittest.cc', | 61 'view_prop_unittest.cc', |
| 62 'win/win_util_unittest.cc', | 62 'win/win_util_unittest.cc', |
| 63 ], | 63 ], |
| 64 'include_dirs': [ | 64 'include_dirs': [ |
| 65 '..', | 65 '..', |
| 66 ], | 66 ], |
| 67 'conditions': [ | 67 'conditions': [ |
| 68 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 68 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
| 69 'sources': [ | 69 'sources': [ |
| 70 'gtk_dnd_util_unittest.cc', | 70 '../ui/base/dragdrop/gtk_dnd_util_unittest.cc', |
| 71 ], | 71 ], |
| 72 'dependencies': [ | 72 'dependencies': [ |
| 73 'app_unittest_strings', | 73 'app_unittest_strings', |
| 74 '../build/linux/system.gyp:gtk', | 74 '../build/linux/system.gyp:gtk', |
| 75 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 75 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 76 ], | 76 ], |
| 77 }], | 77 }], |
| 78 ['OS!="win"', { | 78 ['OS!="win"', { |
| 79 'sources!': [ | 79 'sources!': [ |
| 80 '../ui/base/dragdrop/os_exchange_data_win_unittest.cc', | 80 '../ui/base/dragdrop/os_exchange_data_win_unittest.cc', |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 }], | 204 }], |
| 205 }], | 205 }], |
| 206 ], | 206 ], |
| 207 } | 207 } |
| 208 | 208 |
| 209 # Local Variables: | 209 # Local Variables: |
| 210 # tab-width:2 | 210 # tab-width:2 |
| 211 # indent-tabs-mode:nil | 211 # indent-tabs-mode:nil |
| 212 # End: | 212 # End: |
| 213 # vim: set expandtab tabstop=2 shiftwidth=2: | 213 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |