| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'ppapi_shared', | 8 'target_name': 'ppapi_shared', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 'thunk/ppb_find_api.h', | 79 'thunk/ppb_find_api.h', |
| 80 'thunk/ppb_find_thunk.cc', | 80 'thunk/ppb_find_thunk.cc', |
| 81 'thunk/ppb_font_api.h', | 81 'thunk/ppb_font_api.h', |
| 82 'thunk/ppb_font_thunk.cc', | 82 'thunk/ppb_font_thunk.cc', |
| 83 'thunk/ppb_graphics_2d_api.h', | 83 'thunk/ppb_graphics_2d_api.h', |
| 84 'thunk/ppb_graphics_2d_thunk.cc', | 84 'thunk/ppb_graphics_2d_thunk.cc', |
| 85 'thunk/ppb_image_data_api.h', | 85 'thunk/ppb_image_data_api.h', |
| 86 'thunk/ppb_image_data_thunk.cc', | 86 'thunk/ppb_image_data_thunk.cc', |
| 87 'thunk/thunk.h', | 87 'thunk/thunk.h', |
| 88 ], | 88 ], |
| 89 'conditions': [ | |
| 90 ['OS=="win"', { | |
| 91 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', | |
| 92 }], | |
| 93 ], | |
| 94 }, | 89 }, |
| 95 ], | 90 ], |
| 96 } | 91 } |
| OLD | NEW |