OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'includes': [ | 6 'includes': [ |
7 '../third_party/mesa/mesa.gypi', | 7 '../third_party/mesa/mesa.gypi', |
8 ], | 8 ], |
9 'variables': { | 9 'variables': { |
10 'chromium_code': 1, # Use higher warning level. | 10 'chromium_code': 1, # Use higher warning level. |
(...skipping 15 matching lines...) Expand all Loading... |
26 }], | 26 }], |
27 ], | 27 ], |
28 }, | 28 }, |
29 'targets': [ | 29 'targets': [ |
30 { | 30 { |
31 'target_name': 'ppapi_c', | 31 'target_name': 'ppapi_c', |
32 'type': 'none', | 32 'type': 'none', |
33 'all_dependent_settings': { | 33 'all_dependent_settings': { |
34 'include_dirs': [ | 34 'include_dirs': [ |
35 '..', | 35 '..', |
36 # HOLEY (*#@$@ing #&$^@*&$^. ChromeOS depends on having | |
37 # "third_party" in the include path which the old version of this | |
38 # project did. This is a temporary hack to keep the build going. | |
39 '../third_party', | |
40 ], | 36 ], |
41 }, | 37 }, |
42 'sources': [ | 38 'sources': [ |
43 'c/pp_bool.h', | 39 'c/pp_bool.h', |
44 'c/pp_completion_callback.h', | 40 'c/pp_completion_callback.h', |
45 'c/pp_errors.h', | 41 'c/pp_errors.h', |
46 'c/pp_input_event.h', | 42 'c/pp_input_event.h', |
47 'c/pp_instance.h', | 43 'c/pp_instance.h', |
48 'c/pp_macros.h', | 44 'c/pp_macros.h', |
49 'c/pp_module.h', | 45 'c/pp_module.h', |
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
670 ['OS=="win"', { | 666 ['OS=="win"', { |
671 }], | 667 }], |
672 ['OS=="linux"', { | 668 ['OS=="linux"', { |
673 }], | 669 }], |
674 ['OS=="mac"', { | 670 ['OS=="mac"', { |
675 }] | 671 }] |
676 ], | 672 ], |
677 }, | 673 }, |
678 ], | 674 ], |
679 } | 675 } |
OLD | NEW |