Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Core Skia library code. | 1 # Core Skia library code. |
| 2 { | 2 { |
| 3 'targets': [ | 3 'targets': [ |
| 4 { | 4 { |
| 5 'target_name': 'core', | 5 'target_name': 'core', |
| 6 'product_name': 'skia_core', | 6 'product_name': 'skia_core', |
| 7 'type': 'static_library', | 7 'type': 'static_library', |
| 8 'standalone_static_library': 1, | 8 'standalone_static_library': 1, |
| 9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', | 9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', |
| 10 | 10 |
| 11 'includes': [ | 11 'includes': [ |
| 12 'core.gypi', | 12 'core.gypi', |
| 13 ], | 13 ], |
| 14 | 14 |
| 15 'include_dirs': [ | 15 'include_dirs': [ |
| 16 '../include/config', | 16 '../include/config', |
| 17 '../include/core', | 17 '../include/core', |
| 18 '../include/lazy', | 18 '../include/lazy', |
| 19 '../include/pathops', | 19 '../include/pathops', |
| 20 '../include/pipe', | 20 '../include/pipe', |
| 21 '../include/ports', | 21 '../include/ports', |
| 22 '../include/utils', | 22 '../include/utils', |
| 23 '../include/xml', | 23 '../include/xml', |
| 24 '../src/core', | 24 '../src/core', |
| 25 '../src/image', | 25 '../src/image', |
| 26 '../src/ports', | |
| 26 ], | 27 ], |
| 27 'sources': [ | 28 'sources': [ |
| 28 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu ild). | 29 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu ild). |
| 29 ], | 30 ], |
| 30 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], | 31 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], |
| 31 'conditions': [ | 32 'conditions': [ |
| 32 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { | 33 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { |
| 33 'link_settings': { | 34 'link_settings': { |
| 34 'libraries': [ | 35 'libraries': [ |
| 35 '-lpthread', | 36 '-lpthread', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 87 '../src/core/SkUtilsArm.h', | 88 '../src/core/SkUtilsArm.h', |
| 88 ], | 89 ], |
| 89 }], | 90 }], |
| 90 ['skia_gpu == 1', { | 91 ['skia_gpu == 1', { |
| 91 'include_dirs': [ | 92 'include_dirs': [ |
| 92 '../include/gpu', | 93 '../include/gpu', |
| 93 '../src/gpu', | 94 '../src/gpu', |
| 94 ], | 95 ], |
| 95 }], | 96 }], |
| 96 ], | 97 ], |
| 98 'all_dependent_settings': { | |
| 99 'include_dirs': [ | |
| 100 '../src/ports', | |
|
djsollen
2013/10/11 15:20:18
I'm not a fan of making clients include paths have
bungeman-skia
2013/12/18 15:29:28
Done.
| |
| 101 ], | |
| 102 }, | |
| 97 'direct_dependent_settings': { | 103 'direct_dependent_settings': { |
| 98 'include_dirs': [ | 104 'include_dirs': [ |
| 99 'config', | 105 'config', |
| 100 '../include/config', | 106 '../include/config', |
| 101 '../include/core', | 107 '../include/core', |
| 102 '../include/lazy', | 108 '../include/lazy', |
| 103 '../include/pathops', | 109 '../include/pathops', |
| 104 '../include/pipe', | 110 '../include/pipe', |
| 105 'ext', | 111 'ext', |
| 106 ], | 112 ], |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 124 }, | 130 }, |
| 125 }, | 131 }, |
| 126 ], | 132 ], |
| 127 } | 133 } |
| 128 | 134 |
| 129 # Local Variables: | 135 # Local Variables: |
| 130 # tab-width:2 | 136 # tab-width:2 |
| 131 # indent-tabs-mode:nil | 137 # indent-tabs-mode:nil |
| 132 # End: | 138 # End: |
| 133 # vim: set expandtab tabstop=2 shiftwidth=2: | 139 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |