| 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 # ANGLE is the Windows-specific translator from OGL ES to D3D | 5 # ANGLE is the Windows-specific translator from OGL ES to D3D |
| 6 | 6 |
| 7 { | 7 { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'angle', | 10 'target_name': 'angle', |
| 11 'type': 'none', | 11 'type': 'none', |
| 12 'conditions': [ | 12 'conditions': [ |
| 13 [ 'skia_angle', { | 13 [ 'skia_angle', { |
| 14 'direct_dependent_settings': { | 14 'all_dependent_settings': { |
| 15 'include_dirs': [ | 15 'include_dirs': [ |
| 16 '../third_party/externals/angle2/include', | 16 '../third_party/externals/angle2/include', |
| 17 ], | 17 ], |
| 18 }, | 18 }, |
| 19 'dependencies': [ | 19 'dependencies': [ |
| 20 '../third_party/externals/angle2/src/angle.gyp:libEGL', | 20 '../third_party/externals/angle2/src/angle.gyp:libEGL', |
| 21 '../third_party/externals/angle2/src/angle.gyp:libGLESv2', | 21 '../third_party/externals/angle2/src/angle.gyp:libGLESv2', |
| 22 ], | 22 ], |
| 23 }], | 23 }], |
| 24 ], | 24 ], |
| 25 }, | 25 }, |
| 26 ], | 26 ], |
| 27 } | 27 } |
| OLD | NEW |