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

Unified Diff: ppapi/ppapi_untrusted.gyp

Issue 10409032: Enable PPAPINaCl GLIBC browser_tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing review feedback. Created 8 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/ppapi_untrusted.gyp
diff --git a/ppapi/ppapi_untrusted.gyp b/ppapi/ppapi_untrusted.gyp
index ebe4e5f6fd68acd8dcfc7feafea92f4cdfbd1562..ed84d3a3995a47a730924df262b9b1bc1fd260b1 100644
--- a/ppapi/ppapi_untrusted.gyp
+++ b/ppapi/ppapi_untrusted.gyp
@@ -1,4 +1,4 @@
-# Copyright (c) 2011 The Chromium Authors. All rights reserved.
+# Copyright (c) 2012 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.
@@ -17,7 +17,7 @@
'type': 'none',
'variables': {
'nlib_target': 'libppapi_cpp.a',
- 'build_glibc': 0,
+ 'build_glibc': 1,
'build_newlib': 1,
'sources': [
'<@(cpp_source_files)',
@@ -39,8 +39,11 @@
],
'variables': {
'nexe_target': 'ppapi_nacl_tests',
- 'build_glibc': 0,
+ 'build_glibc': 1,
'build_newlib': 1,
+ 'nmf_glibc%': '<(PRODUCT_DIR)/>(nexe_target)_glibc.nmf',
+ 'tc_lib64%': '>(nacl_glibc_tc_root)/x86_64-nacl/lib64',
+ 'tc_lib32%': '>(nacl_glibc_tc_root)/x86_64-nacl/lib32',
'include_dirs': [
'lib/gl/include',
'..',
@@ -49,14 +52,22 @@
'-lppapi_cpp',
'-lppapi',
],
- 'extra_deps64': [
+ 'extra_deps_newlib64': [
'<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi_cpp.a',
'<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib64/libppapi.a',
],
- 'extra_deps32': [
+ 'extra_deps_newlib32': [
'<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi_cpp.a',
'<(SHARED_INTERMEDIATE_DIR)/tc_newlib/lib32/libppapi.a',
],
+ 'extra_deps_glibc64': [
+ '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libppapi_cpp.a',
+ '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib64/libppapi.a',
+ ],
+ 'extra_deps_glibc32': [
+ '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libppapi_cpp.a',
+ '<(SHARED_INTERMEDIATE_DIR)/tc_glibc/lib32/libppapi.a',
+ ],
'extra_deps_arm': [
'<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libppapi_cpp.a',
'<(SHARED_INTERMEDIATE_DIR)/tc_newlib/libarm/libppapi.a',
@@ -66,6 +77,25 @@
'<@(test_nacl_source_files)',
],
},
+ 'actions': [
+ {
+ 'action_name': 'Generate NMF file and copy libs',
+ 'inputs': ['>(out64)', '>(out32)'],
+ # NOTE: There is no explicit dependency for the lib32
+ # and lib64 directories created in the PRODUCT_DIR.
+ # They are created as a side-effect of NMF creation.
+ 'outputs': ['>(nmf_glibc)'],
+ 'action': [
+ '>(python_exe)',
+ '<(DEPTH)/native_client_sdk/src/tools/create_nmf.py',
+ '>@(_inputs)',
+ '--library-path=>(tc_lib64)',
+ '--library-path=>(tc_lib32)',
+ '--output=>(nmf_glibc)',
+ '--stage-dependencies=<(PRODUCT_DIR)',
+ ],
+ },
+ ],
},
],
}

Powered by Google App Engine
This is Rietveld 408576698