| 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 'ime_test_files': [ | 7 'ime_test_files': [ |
| 8 'character_composer_unittest.cc', | 8 'character_composer_unittest.cc', |
| 9 'input_method_ibus_unittest.cc', | 9 'input_method_ibus_unittest.cc', |
| 10 'mock_ibus_client.h', | |
| 11 'mock_ibus_client.cc', | |
| 12 ], | 10 ], |
| 13 }, | 11 }, |
| 14 'sources': [ | 12 'sources': [ |
| 15 '<@(ime_test_files)', | 13 '<@(ime_test_files)', |
| 16 ], | 14 ], |
| 17 'conditions': [ | 15 'conditions': [ |
| 18 ['use_aura==0 or use_x11==0 or chromeos==0', { | 16 ['use_aura==0 or use_x11==0 or chromeos==0', { |
| 19 'sources!': [ | 17 'sources!': [ |
| 20 '<@(ime_test_files)', | 18 '<@(ime_test_files)', |
| 21 ], | 19 ], |
| 22 }], | 20 }], |
| 23 ], | 21 ], |
| 24 } | 22 } |
| OLD | NEW |