| 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 # Shared source lists between trusted and untrusted targets are stored in | 5 # Shared source lists between trusted and untrusted targets are stored in |
| 6 # ppapi_sources.gypi. | 6 # ppapi_sources.gypi. |
| 7 | 7 |
| 8 { | 8 { |
| 9 'includes': [ | 9 'includes': [ |
| 10 'ppapi_sources.gypi', | 10 'ppapi_sources.gypi', |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 ['OS=="linux"', { | 76 ['OS=="linux"', { |
| 77 'cflags': ['-Wextra', '-pedantic'], | 77 'cflags': ['-Wextra', '-pedantic'], |
| 78 }], | 78 }], |
| 79 ['OS=="mac"', { | 79 ['OS=="mac"', { |
| 80 'xcode_settings': { | 80 'xcode_settings': { |
| 81 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], | 81 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], |
| 82 }, | 82 }, |
| 83 }] | 83 }] |
| 84 ], | 84 ], |
| 85 }, | 85 }, |
| 86 { |
| 87 'target_name': 'ppapi_internal_module', |
| 88 'type': 'static_library', |
| 89 'include_dirs+': [ |
| 90 '..', |
| 91 ], |
| 92 'sources': [ |
| 93 'cpp/private/internal_module.cc', |
| 94 'cpp/private/internal_module.h', |
| 95 ] |
| 96 }, |
| 86 ], | 97 ], |
| 87 } | 98 } |
| OLD | NEW |