OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 9 'includes': [ |
| 10 '../build/common.gypi', |
| 11 ], |
| 12 'target_defaults': { |
| 13 'include_dirs': [ |
| 14 '..', |
| 15 '../..', |
| 16 '../../<(gtestdir)', |
| 17 ], |
| 18 }, |
| 19 'targets': [ |
| 20 { |
| 21 'target_name': 'o3dUtils', |
| 22 'type': 'static_library', |
| 23 'sources': [ |
| 24 "cross/file_path_utils.cc", |
| 25 "cross/file_path_utils.h", |
| 26 "cross/file_text_reader.cc", |
| 27 "cross/file_text_reader.h", |
| 28 "cross/file_text_writer.cc", |
| 29 "cross/file_text_writer.h", |
| 30 "cross/json_writer.cc", |
| 31 "cross/json_writer.h", |
| 32 "cross/string_reader.cc", |
| 33 "cross/string_reader.h", |
| 34 "cross/string_writer.cc", |
| 35 "cross/string_writer.h", |
| 36 "cross/structured_writer.h", |
| 37 "cross/temporary_file.cc", |
| 38 "cross/temporary_file.h", |
| 39 "cross/text_reader.cc", |
| 40 "cross/text_reader.h", |
| 41 "cross/text_writer.cc", |
| 42 "cross/text_writer.h", |
| 43 ], |
| 44 }, |
| 45 { |
| 46 'target_name': 'o3dUtilsTest', |
| 47 'type': 'static_library', |
| 48 'sources': [ |
| 49 "cross/file_path_utils_test.cc", |
| 50 "cross/file_text_reader_test.cc", |
| 51 "cross/json_writer_test.cc", |
| 52 "cross/string_reader_test.cc", |
| 53 "cross/string_writer_test.cc", |
| 54 "cross/temporary_file_test.cc", |
| 55 ], |
| 56 }, |
| 57 ], |
| 58 } |
OLD | NEW |