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

Side by Side Diff: ppapi/ppapi_untrusted.gyp

Issue 9838005: Support for ARM NaCl untrusted runtime build. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 9 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
robertm 2012/03/26 14:30:44 date
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 # This GYP file defines untrusted (NaCl) targets. All targets in this 5 # This GYP file defines untrusted (NaCl) targets. All targets in this
6 # file should be conditionally depended upon via 'disable_nacl!=1' to avoid 6 # file should be conditionally depended upon via 'disable_nacl!=1' to avoid
7 # requiring NaCl sources for building. 7 # requiring NaCl sources for building.
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
11 '../native_client/build/untrusted.gypi', 11 '../native_client/build/untrusted.gypi',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 'build_newlib': 1, 43 'build_newlib': 1,
44 'include_dirs': [ 44 'include_dirs': [
45 'lib/gl/include', 45 'lib/gl/include',
46 '..', 46 '..',
47 ], 47 ],
48 'link_flags': [ 48 'link_flags': [
49 '-lppapi_cpp', 49 '-lppapi_cpp',
50 '-lppapi', 50 '-lppapi',
51 ], 51 ],
52 'extra_deps64': [ 52 'extra_deps64': [
53 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_cpp.a', 53 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_cpp.a',
robertm 2012/03/23 14:10:47 it might be nice to factor the libXXX part somehow
Nikolay 2012/03/26 13:16:32 Agree, but unsure how to do that in .gyp :(. Do yo
robertm 2012/03/26 14:30:44 you could declare a new variable 'archlib' and set
54 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi.a', 54 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi.a',
55 ], 55 ],
56 'extra_deps32': [ 56 'extra_deps32': [
57 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi_cpp.a', 57 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi_cpp.a',
58 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi.a', 58 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi.a',
59 ], 59 ],
60 'extra_depsarm': [
61 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libppapi_cpp.a',
62 '<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libppapi.a',
63 ],
60 'sources': [ 64 'sources': [
61 '<@(test_common_source_files)', 65 '<@(test_common_source_files)',
62 '<@(test_nacl_source_files)', 66 '<@(test_nacl_source_files)',
63 ], 67 ],
64 }, 68 },
65 }, 69 },
66 ], 70 ],
67 } 71 }
OLDNEW
« ppapi/native_client/native_client.gyp ('K') | « ppapi/native_client/native_client.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698