1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'sources': [
'chromeos/character_composer_unittest.cc',
'composition_text_util_pango_unittest.cc',
'input_method_base_unittest.cc',
'input_method_ibus_unittest.cc',
'remote_input_method_win_unittest.cc',
'win/imm32_manager_unittest.cc',
'win/tsf_input_scope_unittest.cc',
'win/tsf_text_store_unittest.cc',
],
'conditions': [
['chromeos==0 or use_x11==0', {
'sources!': [
'chromeos/character_composer_unittest.cc',
'input_method_ibus_unittest.cc',
],
}],
['use_x11==0', {
'sources!': [
'composition_text_util_pango_unittest.cc',
],
}],
],
}
|