| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 '../build/common.gypi', | 10 '../build/common.gypi', |
| 11 ], | 11 ], |
| 12 'target_defaults': { | 12 'target_defaults': { |
| 13 'include_dirs': [ | 13 'include_dirs': [ |
| 14 '..', | 14 '..', |
| 15 '../..', | 15 '../..', |
| 16 '../../<(gtestdir)', | 16 '../../<(gtestdir)', |
| 17 ], | 17 ], |
| 18 }, | 18 }, |
| 19 'targets': [ | 19 'targets': [ |
| 20 { | 20 { |
| 21 'target_name': 'o3dUtils', | 21 'target_name': 'o3dUtils', |
| 22 'type': 'static_library', | 22 'type': 'static_library', |
| 23 'sources': [ | 23 'sources': [ |
| 24 "cross/base64.cc", |
| 25 "cross/base64.h", |
| 26 "cross/dataurl.cc", |
| 27 "cross/dataurl.h", |
| 24 "cross/file_path_utils.cc", | 28 "cross/file_path_utils.cc", |
| 25 "cross/file_path_utils.h", | 29 "cross/file_path_utils.h", |
| 26 "cross/file_text_reader.cc", | 30 "cross/file_text_reader.cc", |
| 27 "cross/file_text_reader.h", | 31 "cross/file_text_reader.h", |
| 28 "cross/file_text_writer.cc", | 32 "cross/file_text_writer.cc", |
| 29 "cross/file_text_writer.h", | 33 "cross/file_text_writer.h", |
| 30 "cross/json_writer.cc", | 34 "cross/json_writer.cc", |
| 31 "cross/json_writer.h", | 35 "cross/json_writer.h", |
| 32 "cross/string_reader.cc", | 36 "cross/string_reader.cc", |
| 33 "cross/string_reader.h", | 37 "cross/string_reader.h", |
| 34 "cross/string_writer.cc", | 38 "cross/string_writer.cc", |
| 35 "cross/string_writer.h", | 39 "cross/string_writer.h", |
| 36 "cross/structured_writer.h", | 40 "cross/structured_writer.h", |
| 37 "cross/temporary_file.cc", | 41 "cross/temporary_file.cc", |
| 38 "cross/temporary_file.h", | 42 "cross/temporary_file.h", |
| 39 "cross/text_reader.cc", | 43 "cross/text_reader.cc", |
| 40 "cross/text_reader.h", | 44 "cross/text_reader.h", |
| 41 "cross/text_writer.cc", | 45 "cross/text_writer.cc", |
| 42 "cross/text_writer.h", | 46 "cross/text_writer.h", |
| 43 ], | 47 ], |
| 44 }, | 48 }, |
| 45 { | 49 { |
| 46 'target_name': 'o3dUtilsTest', | 50 'target_name': 'o3dUtilsTest', |
| 47 'type': 'none', | 51 'type': 'none', |
| 48 'dependencies': [ | 52 'dependencies': [ |
| 49 'o3dUtils', | 53 'o3dUtils', |
| 50 ], | 54 ], |
| 51 'direct_dependent_settings': { | 55 'direct_dependent_settings': { |
| 52 'sources': [ | 56 'sources': [ |
| 57 "cross/base64_test.cc", |
| 58 "cross/dataurl_test.cc", |
| 53 "cross/file_path_utils_test.cc", | 59 "cross/file_path_utils_test.cc", |
| 54 "cross/file_text_reader_test.cc", | 60 "cross/file_text_reader_test.cc", |
| 55 "cross/json_writer_test.cc", | 61 "cross/json_writer_test.cc", |
| 56 "cross/string_reader_test.cc", | 62 "cross/string_reader_test.cc", |
| 57 "cross/string_writer_test.cc", | 63 "cross/string_writer_test.cc", |
| 58 "cross/temporary_file_test.cc", | 64 "cross/temporary_file_test.cc", |
| 59 ], | 65 ], |
| 60 }, | 66 }, |
| 61 }, | 67 }, |
| 62 ], | 68 ], |
| 63 } | 69 } |
| OLD | NEW |