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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 ['OS=="linux"', { | 73 ['OS=="linux"', { |
74 'cflags': ['-Wextra', '-pedantic'], | 74 'cflags': ['-Wextra', '-pedantic'], |
75 }], | 75 }], |
76 ['OS=="mac"', { | 76 ['OS=="mac"', { |
77 'xcode_settings': { | 77 'xcode_settings': { |
78 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], | 78 'WARNING_CFLAGS': ['-Wextra', '-pedantic'], |
79 }, | 79 }, |
80 }] | 80 }] |
81 ], | 81 ], |
82 }, | 82 }, |
| 83 { |
| 84 'target_name': 'ppapi_internal_module', |
| 85 'type': 'static_library', |
| 86 'include_dirs+': [ |
| 87 '..', |
| 88 ], |
| 89 'sources': [ |
| 90 'cpp/internal_module.cc', |
| 91 'cpp/internal_module.h', |
| 92 ] |
| 93 }, |
83 ], | 94 ], |
84 } | 95 } |
OLD | NEW |