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

Side by Side Diff: mojo/mojo_public.gypi

Issue 213393002: Mojo: Move public C system header files to mojo/public/c/system/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'mojo_system', 4 'target_name': 'mojo_system',
5 'type': 'shared_library', 5 'type': 'shared_library',
6 'defines': [ 6 'defines': [
7 'MOJO_SYSTEM_IMPLEMENTATION', 7 'MOJO_SYSTEM_IMPLEMENTATION',
8 ], 8 ],
9 'include_dirs': [ 9 'include_dirs': [
10 '..', 10 '..',
11 ], 11 ],
12 'direct_dependent_settings': { 12 'direct_dependent_settings': {
13 'include_dirs': [ 13 'include_dirs': [
14 '..', 14 '..',
15 ], 15 ],
16 }, 16 },
17 'sources': [ 17 'sources': [
18 'public/system/async_waiter.h', 18 'public/c/system/async_waiter.h',
19 'public/system/core.h', 19 'public/c/system/core.h',
20 'public/c/system/macros.h',
21 'public/c/system/system_export.h',
20 'public/system/core_cpp.h', 22 'public/system/core_cpp.h',
21 'public/system/core_private.cc', 23 'public/system/core_private.cc',
22 'public/system/core_private.h', 24 'public/system/core_private.h',
23 'public/system/macros.h',
24 'public/system/system_export.h',
25 ], 25 ],
26 'conditions': [ 26 'conditions': [
27 ['OS=="mac"', { 27 ['OS=="mac"', {
28 'xcode_settings': { 28 'xcode_settings': {
29 # Make it a run-path dependent library. 29 # Make it a run-path dependent library.
30 'DYLIB_INSTALL_NAME_BASE': '@rpath', 30 'DYLIB_INSTALL_NAME_BASE': '@rpath',
31 }, 31 },
32 'direct_dependent_settings': { 32 'direct_dependent_settings': {
33 'xcode_settings': { 33 'xcode_settings': {
34 # Look for run-path dependent libraries in the loader's directory. 34 # Look for run-path dependent libraries in the loader's directory.
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 'mojo_bindings', 360 'mojo_bindings',
361 'mojo_system', 361 'mojo_system',
362 ], 362 ],
363 'export_dependent_settings': [ 363 'export_dependent_settings': [
364 'mojo_bindings', 364 'mojo_bindings',
365 'mojo_system', 365 'mojo_system',
366 ], 366 ],
367 }, 367 },
368 ], 368 ],
369 } 369 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698