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

Side by Side Diff: gyp/jsoncpp.gyp

Issue 282053002: Generate bench/Android.mk from gyp. (Closed) Base URL: https://skia.googlesource.com/skia.git@baselines
Patch Set: Remove modifications to generated files to submit. Created 6 years, 7 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
« no previous file with comments | « gyp/common_variables.gypi ('k') | include/utils/SkJSONCPP.h » ('j') | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # TODO: This file was copied from the external dependency 5 # TODO: This file was copied from the external dependency
6 # third_party/externals/jsoncpp-chromium/jsoncpp.gyp , at revision 125399, 6 # third_party/externals/jsoncpp-chromium/jsoncpp.gyp , at revision 125399,
7 # with directory paths modified to work at this level. 7 # with directory paths modified to work at this level.
8 # 8 #
9 # It would be better for us to depend on that gypfile within the external 9 # It would be better for us to depend on that gypfile within the external
10 # dependency, but so far we have been unable to make that work reliably. 10 # dependency, but so far we have been unable to make that work reliably.
11 # See https://code.google.com/p/skia/issues/detail?id=1023 11 # See https://code.google.com/p/skia/issues/detail?id=1023
12 # and https://code.google.com/p/skia/source/detail?r=7115 12 # and https://code.google.com/p/skia/source/detail?r=7115
13 13
14 { 14 {
15 'variables': { 15 'variables': {
16 'skia_warnings_as_errors': 0, 16 'skia_warnings_as_errors': 0,
17 }, 17 },
18 'targets': [ 18 'targets': [
19 { 19 {
20 'target_name': 'jsoncpp', 20 'target_name': 'jsoncpp',
21 'type': 'static_library', 21 'type': 'static_library',
22 'defines': [ 22 'conditions': [
23 'JSON_USE_EXCEPTION=0', 23 ['skia_build_json_writer', {
24 ], 24 'defines': [
25 'sources': [ 25 'JSON_USE_EXCEPTION=0',
26 '../third_party/externals/jsoncpp/include/json/assertions.h', 26 ],
27 '../third_party/externals/jsoncpp/include/json/autolink.h', 27 'sources': [
28 '../third_party/externals/jsoncpp/include/json/config.h', 28 '../third_party/externals/jsoncpp/include/json/assertions.h',
29 '../third_party/externals/jsoncpp/include/json/features.h', 29 '../third_party/externals/jsoncpp/include/json/autolink.h',
30 '../third_party/externals/jsoncpp/include/json/forwards.h', 30 '../third_party/externals/jsoncpp/include/json/config.h',
31 '../third_party/externals/jsoncpp/include/json/json.h', 31 '../third_party/externals/jsoncpp/include/json/features.h',
32 '../third_party/externals/jsoncpp/include/json/reader.h', 32 '../third_party/externals/jsoncpp/include/json/forwards.h',
33 '../third_party/externals/jsoncpp-chromium/overrides/include/json/value. h', 33 '../third_party/externals/jsoncpp/include/json/json.h',
34 '../third_party/externals/jsoncpp/include/json/writer.h', 34 '../third_party/externals/jsoncpp/include/json/reader.h',
35 '../third_party/externals/jsoncpp/src/lib_json/json_batchallocator.h', 35 '../third_party/externals/jsoncpp-chromium/overrides/include/json/va lue.h',
36 '../third_party/externals/jsoncpp/src/lib_json/json_reader.cpp', 36 '../third_party/externals/jsoncpp/include/json/writer.h',
37 '../third_party/externals/jsoncpp/src/lib_json/json_tool.h', 37 '../third_party/externals/jsoncpp/src/lib_json/json_batchallocator.h ',
38 '../third_party/externals/jsoncpp-chromium/overrides/src/lib_json/json_v alue.cpp', 38 '../third_party/externals/jsoncpp/src/lib_json/json_reader.cpp',
39 '../third_party/externals/jsoncpp/src/lib_json/json_writer.cpp', 39 '../third_party/externals/jsoncpp/src/lib_json/json_tool.h',
40 ], 40 '../third_party/externals/jsoncpp-chromium/overrides/src/lib_json/js on_value.cpp',
41 'include_dirs': [ 41 '../third_party/externals/jsoncpp/src/lib_json/json_writer.cpp',
42 '../third_party/externals/jsoncpp-chromium/overrides/include/', 42 ],
43 '../third_party/externals/jsoncpp/include/', 43 'include_dirs': [
44 '../third_party/externals/jsoncpp/src/lib_json/', 44 '../third_party/externals/jsoncpp-chromium/overrides/include/',
45 ], 45 '../third_party/externals/jsoncpp/include/',
46 'direct_dependent_settings': { 46 '../third_party/externals/jsoncpp/src/lib_json/',
47 'include_dirs': [ 47 ],
48 '../third_party/externals/jsoncpp-chromium/overrides/include/', 48 'direct_dependent_settings': {
49 '../third_party/externals/jsoncpp/include/', 49 'include_dirs': [
50 ], 50 '../third_party/externals/jsoncpp-chromium/overrides/include/',
51 }, 51 '../third_party/externals/jsoncpp/include/',
52 'cflags': [ 52 ],
53 '-w', 53 },
54 'cflags': [
55 '-w',
56 ],
57 }],
54 ], 58 ],
55 }, 59 },
56 ], 60 ],
57 } 61 }
OLDNEW
« no previous file with comments | « gyp/common_variables.gypi ('k') | include/utils/SkJSONCPP.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698