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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'target_defaults': { | 9 'target_defaults': { |
10 'sources/': [ | 10 'sources/': [ |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 'animation/tween.h', | 79 'animation/tween.h', |
80 'clipboard/clipboard.cc', | 80 'clipboard/clipboard.cc', |
81 'clipboard/clipboard.h', | 81 'clipboard/clipboard.h', |
82 'clipboard/clipboard_linux.cc', | 82 'clipboard/clipboard_linux.cc', |
83 'clipboard/clipboard_mac.mm', | 83 'clipboard/clipboard_mac.mm', |
84 'clipboard/clipboard_util_win.cc', | 84 'clipboard/clipboard_util_win.cc', |
85 'clipboard/clipboard_util_win.h', | 85 'clipboard/clipboard_util_win.h', |
86 'clipboard/clipboard_win.cc', | 86 'clipboard/clipboard_win.cc', |
87 'clipboard/scoped_clipboard_writer.cc', | 87 'clipboard/scoped_clipboard_writer.cc', |
88 'clipboard/scoped_clipboard_writer.h', | 88 'clipboard/scoped_clipboard_writer.h', |
| 89 'ime/composition.cc', |
| 90 'ime/composition.h', |
| 91 'ime/composition_underline.h', |
| 92 'ime/text_input_type.h', |
89 'range/range.cc', | 93 'range/range.cc', |
90 'range/range.h', | 94 'range/range.h', |
91 'range/range.mm', | 95 'range/range.mm', |
92 ], | 96 ], |
93 'conditions': [ | 97 'conditions': [ |
94 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 98 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
95 'dependencies': [ | 99 'dependencies': [ |
96 '../build/linux/system.gyp:gtk', | 100 '../build/linux/system.gyp:gtk', |
97 '../build/linux/system.gyp:x11', | 101 '../build/linux/system.gyp:x11', |
98 '../build/linux/system.gyp:xext', | 102 '../build/linux/system.gyp:xext', |
(...skipping 24 matching lines...) Expand all Loading... |
123 ], | 127 ], |
124 }, | 128 }, |
125 ], | 129 ], |
126 } | 130 } |
127 | 131 |
128 # Local Variables: | 132 # Local Variables: |
129 # tab-width:2 | 133 # tab-width:2 |
130 # indent-tabs-mode:nil | 134 # indent-tabs-mode:nil |
131 # End: | 135 # End: |
132 # vim: set expandtab tabstop=2 shiftwidth=2: | 136 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |