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

Unified Diff: build/android/native_app_dependencies.gypi

Issue 655543005: Added support of shared_library build for tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed comments formatting in GYPs Created 6 years, 2 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
« no previous file with comments | « build/all.gyp ('k') | build/android/pylib/gtest/test_package_exe.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/native_app_dependencies.gypi
diff --git a/build/android/native_app_dependencies.gypi b/build/android/native_app_dependencies.gypi
index d9241cc30323e44bb48c817bb293bf274ecb677a..6032274dbbabf21f4228ea7b1a7d13f627504a8f 100644
--- a/build/android/native_app_dependencies.gypi
+++ b/build/android/native_app_dependencies.gypi
@@ -25,12 +25,9 @@
#
{
- 'copies': [
- {
- 'destination': '<(output_dir)',
- 'files': [ '<(native_binary)' ],
- }
- ],
+ 'variables': {
+ 'include_main_binary%': 1,
+ },
'conditions': [
['component == "shared_library"', {
'dependencies': [
@@ -58,5 +55,13 @@
},
],
}],
+ ['include_main_binary==1', {
+ 'copies': [
+ {
+ 'destination': '<(output_dir)',
+ 'files': [ '<(native_binary)' ],
+ }
+ ],
+ }],
],
}
« no previous file with comments | « build/all.gyp ('k') | build/android/pylib/gtest/test_package_exe.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698