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

Side by Side Diff: utils/utils.gyp

Issue 131116: This adds in the GYP files needed for our GYP build. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 6 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 | « statsreport/statsreport.gyp ('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
(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 }
OLDNEW
« no previous file with comments | « statsreport/statsreport.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698