Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(575)

Side by Side Diff: utils/utils.gyp

Issue 147129: Adding in most of the unit tests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/common/win/testing_common.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « tests/common/win/testing_common.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698