| 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', | 34 'i18n/bidi_line_iterator.cc', |
| 35 » 'i18n/bidi_line_iterator.h', | 35 'i18n/bidi_line_iterator.h', |
| 36 'i18n/break_iterator.cc', | 36 'i18n/break_iterator.cc', |
| 37 'i18n/break_iterator.h', | 37 'i18n/break_iterator.h', |
| 38 'i18n/char_iterator.cc', | 38 'i18n/char_iterator.cc', |
| 39 'i18n/char_iterator.h', | 39 'i18n/char_iterator.h', |
| 40 'i18n/file_util_icu.cc', | 40 'i18n/file_util_icu.cc', |
| 41 'i18n/file_util_icu.h', | 41 'i18n/file_util_icu.h', |
| 42 'i18n/icu_encoding_detection.cc', | 42 'i18n/icu_encoding_detection.cc', |
| 43 'i18n/icu_encoding_detection.h', | 43 'i18n/icu_encoding_detection.h', |
| 44 'i18n/icu_string_conversions.cc', | 44 'i18n/icu_string_conversions.cc', |
| 45 'i18n/icu_string_conversions.h', | 45 'i18n/icu_string_conversions.h', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 62 'test/run_all_unittests.cc', | 62 'test/run_all_unittests.cc', |
| 63 | 63 |
| 64 # Tests. | 64 # Tests. |
| 65 'at_exit_unittest.cc', | 65 'at_exit_unittest.cc', |
| 66 'atomicops_unittest.cc', | 66 'atomicops_unittest.cc', |
| 67 'base64_unittest.cc', | 67 'base64_unittest.cc', |
| 68 'bind_unittest.cc', | 68 'bind_unittest.cc', |
| 69 'bits_unittest.cc', | 69 'bits_unittest.cc', |
| 70 'callback_unittest.cc', | 70 'callback_unittest.cc', |
| 71 'command_line_unittest.cc', | 71 'command_line_unittest.cc', |
| 72 'cpu_unittest.cc', |
| 72 'crypto/encryptor_unittest.cc', | 73 'crypto/encryptor_unittest.cc', |
| 73 'crypto/rsa_private_key_unittest.cc', | 74 'crypto/rsa_private_key_unittest.cc', |
| 74 'crypto/rsa_private_key_nss_unittest.cc', | 75 'crypto/rsa_private_key_nss_unittest.cc', |
| 75 'crypto/secure_hash_unittest.cc', | 76 'crypto/secure_hash_unittest.cc', |
| 76 'crypto/signature_creator_unittest.cc', | 77 'crypto/signature_creator_unittest.cc', |
| 77 'crypto/signature_verifier_unittest.cc', | 78 'crypto/signature_verifier_unittest.cc', |
| 78 'crypto/symmetric_key_unittest.cc', | 79 'crypto/symmetric_key_unittest.cc', |
| 79 'debug/leak_tracker_unittest.cc', | 80 'debug/leak_tracker_unittest.cc', |
| 80 'debug/stack_trace_unittest.cc', | 81 'debug/stack_trace_unittest.cc', |
| 81 'debug/trace_event_win_unittest.cc', | 82 'debug/trace_event_win_unittest.cc', |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 ], | 328 ], |
| 328 }], | 329 }], |
| 329 ], | 330 ], |
| 330 } | 331 } |
| 331 | 332 |
| 332 # Local Variables: | 333 # Local Variables: |
| 333 # tab-width:2 | 334 # tab-width:2 |
| 334 # indent-tabs-mode:nil | 335 # indent-tabs-mode:nil |
| 335 # End: | 336 # End: |
| 336 # vim: set expandtab tabstop=2 shiftwidth=2: | 337 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |