| 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 | 5 |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'sdl', | 9 'target_name': 'sdl', |
| 10 'product_name': 'sdl', | 10 'product_name': 'sdl', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 ['skia_os == "linux"', { | 27 ['skia_os == "linux"', { |
| 28 'includes': [ | 28 'includes': [ |
| 29 'linux/sdl_linux.gypi', | 29 'linux/sdl_linux.gypi', |
| 30 ] | 30 ] |
| 31 }], | 31 }], |
| 32 ['skia_os == "android"', { | 32 ['skia_os == "android"', { |
| 33 'includes': [ | 33 'includes': [ |
| 34 'android/sdl_android.gypi', | 34 'android/sdl_android.gypi', |
| 35 ] | 35 ] |
| 36 }], | 36 }], |
| 37 ['skia_os == "mac"', { |
| 38 'includes': [ |
| 39 'mac/sdl_mac.gypi', |
| 40 ] |
| 41 }], |
| 37 ], | 42 ], |
| 38 }, | 43 }, |
| 39 ], | 44 ], |
| 40 } | 45 } |
| OLD | NEW |