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

Unified Diff: native_client_sdk/native_client_sdk_untrusted.gyp

Issue 61763014: Add build target for nacl_io from the NaCl SDK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Add new targets back into all.gyp, readd main function in dsc_info.py Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/gyp_chromium ('k') | native_client_sdk/src/build_tools/dsc_info.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/native_client_sdk_untrusted.gyp
diff --git a/native_client_sdk/native_client_sdk_untrusted.gyp b/native_client_sdk/native_client_sdk_untrusted.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..b4fd33bdb943824fe26857de5f19cde3a5a2f1e8
--- /dev/null
+++ b/native_client_sdk/native_client_sdk_untrusted.gyp
@@ -0,0 +1,44 @@
+# Copyright (c) 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'includes': [
+ '../build/common_untrusted.gypi',
+ ],
+ 'conditions': [
+ ['disable_nacl==0 and disable_nacl_untrusted==0', {
+ 'targets': [
+ {
+ 'target_name': 'nacl_io_untrusted',
+ 'type': 'none',
+ 'variables': {
+ 'nacl_untrusted_build': 1,
+ 'nlib_target': 'libnacl_io.a',
+ 'build_newlib': 1,
+ },
+ 'include_dirs': [
+ '../native_client/src/untrusted/irt',
+ 'src/libraries',
+ 'src/libraries/nacl_io/include',
+ 'src/libraries/third_party/newlib-extras',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ 'src/libraries',
+ 'src/libraries/nacl_io/include',
+ 'src/libraries/third_party/newlib-extras',
+ ],
+ },
+ 'sources': [
+ '>!@pymod_do_main(dsc_info -s -l src/libraries/nacl_io nacl_io)',
+ ],
+ 'dependencies': [
+ '../native_client/tools.gyp:prep_toolchain',
+ '../ppapi/native_client/native_client.gyp:ppapi_lib',
+ ],
+ },
+ ],
+ }],
+ ],
+}
« no previous file with comments | « build/gyp_chromium ('k') | native_client_sdk/src/build_tools/dsc_info.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698