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', |
(...skipping 26 matching lines...) Expand all Loading... |
37 "cross/temporary_file.cc", | 37 "cross/temporary_file.cc", |
38 "cross/temporary_file.h", | 38 "cross/temporary_file.h", |
39 "cross/text_reader.cc", | 39 "cross/text_reader.cc", |
40 "cross/text_reader.h", | 40 "cross/text_reader.h", |
41 "cross/text_writer.cc", | 41 "cross/text_writer.cc", |
42 "cross/text_writer.h", | 42 "cross/text_writer.h", |
43 ], | 43 ], |
44 }, | 44 }, |
45 { | 45 { |
46 'target_name': 'o3dUtilsTest', | 46 'target_name': 'o3dUtilsTest', |
47 'type': 'static_library', | 47 'type': 'none', |
48 'sources': [ | 48 'dependencies': [ |
49 "cross/file_path_utils_test.cc", | 49 'o3dUtils', |
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 ], | 50 ], |
| 51 'direct_dependent_settings': { |
| 52 'sources': [ |
| 53 "cross/file_path_utils_test.cc", |
| 54 "cross/file_text_reader_test.cc", |
| 55 "cross/json_writer_test.cc", |
| 56 "cross/string_reader_test.cc", |
| 57 "cross/string_writer_test.cc", |
| 58 "cross/temporary_file_test.cc", |
| 59 ], |
| 60 }, |
56 }, | 61 }, |
57 ], | 62 ], |
58 } | 63 } |
OLD | NEW |