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', | 52 'base/ime/composition_text.cc', |
53 'base/ime/composition.h', | 53 'base/ime/composition_text.h', |
54 'base/ime/composition_underline.h', | 54 'base/ime/composition_underline.h', |
55 'base/ime/text_input_type.h', | 55 'base/ime/text_input_type.h', |
| 56 'base/gtk/gtk_im_context_util.cc', |
| 57 'base/gtk/gtk_im_context_util.h', |
56 'base/range/range.cc', | 58 'base/range/range.cc', |
57 'base/range/range.h', | 59 'base/range/range.h', |
58 'base/range/range.mm', | 60 'base/range/range.mm', |
59 ], | 61 ], |
60 'conditions': [ | 62 'conditions': [ |
61 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 63 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
62 'dependencies': [ | 64 'dependencies': [ |
63 '../build/linux/system.gyp:gtk', | 65 '../build/linux/system.gyp:gtk', |
64 '../build/linux/system.gyp:x11', | 66 '../build/linux/system.gyp:x11', |
65 '../build/linux/system.gyp:xext', | 67 '../build/linux/system.gyp:xext', |
66 ], | 68 ], |
67 }], | 69 }], |
| 70 ['OS=="win"', { |
| 71 'sources': [ |
| 72 'base/win/ime_input.cc', |
| 73 'base/win/ime_input.h', |
| 74 ], |
| 75 }], |
68 ], | 76 ], |
69 }, | 77 }, |
70 ], | 78 ], |
71 } | 79 } |
72 | 80 |
73 # Local Variables: | 81 # Local Variables: |
74 # tab-width:2 | 82 # tab-width:2 |
75 # indent-tabs-mode:nil | 83 # indent-tabs-mode:nil |
76 # End: | 84 # End: |
77 # vim: set expandtab tabstop=2 shiftwidth=2: | 85 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |