| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # Core Skia library code. | 5 # Core Skia library code. |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'core', | 9 'target_name': 'core', |
| 10 'product_name': 'skia_core', | 10 'product_name': 'skia_core', |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 '../include/gpu', | 100 '../include/gpu', |
| 101 '../src/gpu', | 101 '../src/gpu', |
| 102 ], | 102 ], |
| 103 }], | 103 }], |
| 104 ], | 104 ], |
| 105 'direct_dependent_settings': { | 105 'direct_dependent_settings': { |
| 106 'include_dirs': [ | 106 'include_dirs': [ |
| 107 '../include/c', | 107 '../include/c', |
| 108 '../include/config', | 108 '../include/config', |
| 109 '../include/core', | 109 '../include/core', |
| 110 '../include/gpu', |
| 110 '../include/pathops', | 111 '../include/pathops', |
| 111 '../include/pipe', | 112 '../include/pipe', |
| 112 ], | 113 ], |
| 113 'conditions': [ | 114 'conditions': [ |
| 114 [ 'skia_os == "mac"', { | 115 [ 'skia_os == "mac"', { |
| 115 'include_dirs': [ | 116 'include_dirs': [ |
| 116 '../include/utils/mac', | 117 '../include/utils/mac', |
| 117 ], | 118 ], |
| 118 }], | 119 }], |
| 119 [ 'skia_os == "ios"', { | 120 [ 'skia_os == "ios"', { |
| 120 'include_dirs': [ | 121 'include_dirs': [ |
| 121 '../include/utils/ios', | 122 '../include/utils/ios', |
| 122 ], | 123 ], |
| 123 }], | 124 }], |
| 124 [ 'skia_os == "win"', { | 125 [ 'skia_os == "win"', { |
| 125 'include_dirs': [ | 126 'include_dirs': [ |
| 126 'config/win', | 127 'config/win', |
| 127 ], | 128 ], |
| 128 }], | 129 }], |
| 129 ], | 130 ], |
| 130 }, | 131 }, |
| 131 }, | 132 }, |
| 132 ], | 133 ], |
| 133 } | 134 } |
| OLD | NEW |