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 'includes': [ | 9 'includes': [ |
10 'base.gypi', | 10 'base.gypi', |
(...skipping 13 matching lines...) Expand all Loading... |
24 'dependencies': [ | 24 'dependencies': [ |
25 # i18n/rtl.cc uses gtk | 25 # i18n/rtl.cc uses gtk |
26 '../build/linux/system.gyp:gtk', | 26 '../build/linux/system.gyp:gtk', |
27 ], | 27 ], |
28 }], | 28 }], |
29 ], | 29 ], |
30 'export_dependent_settings': [ | 30 'export_dependent_settings': [ |
31 'base', | 31 'base', |
32 ], | 32 ], |
33 'sources': [ | 33 'sources': [ |
| 34 'i18n/bidi_line_iterator.cc', |
| 35 'i18n/bidi_line_iterator.h', |
34 'i18n/break_iterator.cc', | 36 'i18n/break_iterator.cc', |
35 'i18n/break_iterator.h', | 37 'i18n/break_iterator.h', |
36 'i18n/char_iterator.cc', | 38 'i18n/char_iterator.cc', |
37 'i18n/char_iterator.h', | 39 'i18n/char_iterator.h', |
38 'i18n/file_util_icu.cc', | 40 'i18n/file_util_icu.cc', |
39 'i18n/file_util_icu.h', | 41 'i18n/file_util_icu.h', |
40 'i18n/icu_encoding_detection.cc', | 42 'i18n/icu_encoding_detection.cc', |
41 'i18n/icu_encoding_detection.h', | 43 'i18n/icu_encoding_detection.h', |
42 'i18n/icu_string_conversions.cc', | 44 'i18n/icu_string_conversions.cc', |
43 'i18n/icu_string_conversions.h', | 45 'i18n/icu_string_conversions.h', |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 ], | 324 ], |
323 }], | 325 }], |
324 ], | 326 ], |
325 } | 327 } |
326 | 328 |
327 # Local Variables: | 329 # Local Variables: |
328 # tab-width:2 | 330 # tab-width:2 |
329 # indent-tabs-mode:nil | 331 # indent-tabs-mode:nil |
330 # End: | 332 # End: |
331 # vim: set expandtab tabstop=2 shiftwidth=2: | 333 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |