Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 Google Inc. | |
| 2 # | |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 # A simple gyp file to generate SDL for internal purposes | |
| 6 { | |
| 7 'variables': { | |
| 8 'base_dir%': '../third_party/libsdl', | |
|
mtklein
2015/10/28 21:12:15
I don't really get why these are variables? Are y
joshualitt
2015/10/29 13:51:39
Its so you can test with other versions of SDL, su
| |
| 9 'src_dir%': '../third_party/externals/sdl', | |
| 10 'skia_warnings_as_errors': 0, | |
| 11 }, | |
| 12 'includes': [ | |
| 13 '../third_party/libsdl/sdl.gypi', | |
| 14 ], | |
| 15 } | |
| OLD | NEW |