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

Side by Side Diff: mojo/mojo_public.gypi

Issue 360563004: Enable Mojo on iOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reduce diff in mojo_public.gypi Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/public/cpp/environment/tests/logger_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'mojo_system', 4 'target_name': 'mojo_system',
5 'type': 'static_library', 5 'type': 'static_library',
6 'defines': [ 6 'defines': [
7 'MOJO_SYSTEM_IMPLEMENTATION', 7 'MOJO_SYSTEM_IMPLEMENTATION',
8 ], 8 ],
9 'include_dirs': [ 9 'include_dirs': [
10 '..', 10 '..',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 ['OS=="mac"', { 69 ['OS=="mac"', {
70 'xcode_settings': { 70 'xcode_settings': {
71 # Make it a run-path dependent library. 71 # Make it a run-path dependent library.
72 'DYLIB_INSTALL_NAME_BASE': '@loader_path', 72 'DYLIB_INSTALL_NAME_BASE': '@loader_path',
73 }, 73 },
74 }], 74 }],
75 ], 75 ],
76 }, 76 },
77 { 77 {
78 'target_name': 'mojo_test_support', 78 'target_name': 'mojo_test_support',
79 'type': 'shared_library',
80 'defines': [ 79 'defines': [
81 'MOJO_TEST_SUPPORT_IMPLEMENTATION', 80 'MOJO_TEST_SUPPORT_IMPLEMENTATION',
82 ], 81 ],
83 'include_dirs': [ 82 'include_dirs': [
84 '..', 83 '..',
85 ], 84 ],
86 'direct_dependent_settings': { 85 'direct_dependent_settings': {
87 'include_dirs': [ 86 'include_dirs': [
88 '..', 87 '..',
89 ], 88 ],
90 }, 89 },
91 'sources': [ 90 'sources': [
92 'public/c/test_support/test_support.h', 91 'public/c/test_support/test_support.h',
93 'public/c/test_support/test_support_export.h', 92 'public/c/test_support/test_support_export.h',
94 'public/tests/test_support_private.cc', 93 'public/tests/test_support_private.cc',
95 'public/tests/test_support_private.h', 94 'public/tests/test_support_private.h',
96 ], 95 ],
97 'conditions': [ 96 'conditions': [
97 ['OS=="ios"', {
98 'type': 'static_library',
99 }, {
100 'type': 'shared_library',
101 }],
98 ['OS=="mac"', { 102 ['OS=="mac"', {
99 'xcode_settings': { 103 'xcode_settings': {
100 # Make it a run-path dependent library. 104 # Make it a run-path dependent library.
101 'DYLIB_INSTALL_NAME_BASE': '@loader_path', 105 'DYLIB_INSTALL_NAME_BASE': '@loader_path',
102 }, 106 },
103 }], 107 }],
104 ], 108 ],
105 }, 109 },
106 { 110 {
107 'target_name': 'mojo_public_test_utils', 111 'target_name': 'mojo_public_test_utils',
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 }, 454 },
451 'dependencies': [ 455 'dependencies': [
452 'mojo_public_java', 456 'mojo_public_java',
453 ], 457 ],
454 'includes': [ '../build/java.gypi' ], 458 'includes': [ '../build/java.gypi' ],
455 }, 459 },
456 ], 460 ],
457 }], 461 }],
458 ], 462 ],
459 } 463 }
OLDNEW
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/public/cpp/environment/tests/logger_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698