OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'ui_base', | 8 'target_name': 'ui_base', |
9 'type': '<(library)', | 9 'type': '<(library)', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 'base/animation/tween.h', | 42 'base/animation/tween.h', |
43 'base/clipboard/clipboard.cc', | 43 'base/clipboard/clipboard.cc', |
44 'base/clipboard/clipboard.h', | 44 'base/clipboard/clipboard.h', |
45 'base/clipboard/clipboard_linux.cc', | 45 'base/clipboard/clipboard_linux.cc', |
46 'base/clipboard/clipboard_mac.mm', | 46 'base/clipboard/clipboard_mac.mm', |
47 'base/clipboard/clipboard_util_win.cc', | 47 'base/clipboard/clipboard_util_win.cc', |
48 'base/clipboard/clipboard_util_win.h', | 48 'base/clipboard/clipboard_util_win.h', |
49 'base/clipboard/clipboard_win.cc', | 49 'base/clipboard/clipboard_win.cc', |
50 'base/clipboard/scoped_clipboard_writer.cc', | 50 'base/clipboard/scoped_clipboard_writer.cc', |
51 'base/clipboard/scoped_clipboard_writer.h', | 51 'base/clipboard/scoped_clipboard_writer.h', |
| 52 'base/ime/composition.cc', |
| 53 'base/ime/composition.h', |
| 54 'base/ime/composition_underline.h', |
| 55 'base/ime/text_input_type.h', |
52 'base/range/range.cc', | 56 'base/range/range.cc', |
53 'base/range/range.h', | 57 'base/range/range.h', |
54 'base/range/range.mm', | 58 'base/range/range.mm', |
55 ], | 59 ], |
56 'conditions': [ | 60 'conditions': [ |
57 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 61 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
58 'dependencies': [ | 62 'dependencies': [ |
59 '../build/linux/system.gyp:gtk', | 63 '../build/linux/system.gyp:gtk', |
60 '../build/linux/system.gyp:x11', | 64 '../build/linux/system.gyp:x11', |
61 '../build/linux/system.gyp:xext', | 65 '../build/linux/system.gyp:xext', |
62 ], | 66 ], |
63 }], | 67 }], |
64 ], | 68 ], |
65 }, | 69 }, |
66 ], | 70 ], |
67 } | 71 } |
68 | 72 |
69 # Local Variables: | 73 # Local Variables: |
70 # tab-width:2 | 74 # tab-width:2 |
71 # indent-tabs-mode:nil | 75 # indent-tabs-mode:nil |
72 # End: | 76 # End: |
73 # vim: set expandtab tabstop=2 shiftwidth=2: | 77 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |