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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 ], | 115 ], |
116 }, | 116 }, |
117 { | 117 { |
118 'target_name': 'ppapi_cpp_objects', | 118 'target_name': 'ppapi_cpp_objects', |
119 'type': 'static_library', | 119 'type': 'static_library', |
120 'dependencies': [ | 120 'dependencies': [ |
121 'ppapi_c' | 121 'ppapi_c' |
122 ], | 122 ], |
123 'include_dirs': [ | 123 'include_dirs': [ |
124 '..', | 124 '..', |
| 125 'lib/gl/include', |
125 ], | 126 ], |
126 'sources': [ | 127 'sources': [ |
127 'cpp/common.h', | 128 'cpp/common.h', |
128 'cpp/completion_callback.h', | 129 'cpp/completion_callback.h', |
129 'cpp/core.cc', | 130 'cpp/core.cc', |
130 'cpp/core.h', | 131 'cpp/core.h', |
131 'cpp/graphics_2d.cc', | 132 'cpp/graphics_2d.cc', |
132 'cpp/graphics_2d.h', | 133 'cpp/graphics_2d.h', |
133 'cpp/image_data.cc', | 134 'cpp/image_data.cc', |
134 'cpp/image_data.h', | 135 'cpp/image_data.h', |
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
670 ['OS=="win"', { | 671 ['OS=="win"', { |
671 }], | 672 }], |
672 ['OS=="linux"', { | 673 ['OS=="linux"', { |
673 }], | 674 }], |
674 ['OS=="mac"', { | 675 ['OS=="mac"', { |
675 }] | 676 }] |
676 ], | 677 ], |
677 }, | 678 }, |
678 ], | 679 ], |
679 } | 680 } |
OLD | NEW |