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', |
11 ], | 11 ], |
12 'targets': [ | 12 'targets': [ |
13 { | 13 { |
14 # GN version: //ppapi:ppapi_c | 14 # GN version: //ppapi:ppapi_c |
15 'target_name': 'ppapi_c', | 15 'target_name': 'ppapi_c', |
16 'type': 'none', | 16 'type': 'none', |
17 'all_dependent_settings': { | 17 'all_dependent_settings': { |
18 'include_dirs+': [ | 18 'include_dirs+': [ |
19 '..', | 19 '..', |
20 ], | 20 ], |
21 }, | 21 }, |
22 'sources': [ | 22 'sources': [ |
23 '<@(c_source_files)', | 23 '<@(c_source_files)', |
24 ], | 24 ], |
25 }, | 25 }, |
26 { | 26 { |
27 # GN version: //ppapi:ppapi_cpp_pbjects | 27 # GN version: //ppapi:ppapi_cpp_objects |
28 'target_name': 'ppapi_cpp_objects', | 28 'target_name': 'ppapi_cpp_objects', |
29 'type': 'static_library', | 29 'type': 'static_library', |
30 'dependencies': [ | 30 'dependencies': [ |
31 'ppapi_c' | 31 'ppapi_c' |
32 ], | 32 ], |
33 'include_dirs+': [ | 33 'include_dirs+': [ |
34 '..', | 34 '..', |
35 ], | 35 ], |
36 'sources': [ | 36 'sources': [ |
37 '<@(cpp_source_files)', | 37 '<@(cpp_source_files)', |
(...skipping 38 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 # GN version: //ppapi:ppapi_internal_module |
| 88 'target_name': 'ppapi_internal_module', |
| 89 'type': 'static_library', |
| 90 'include_dirs+': [ |
| 91 '..', |
| 92 ], |
| 93 'sources': [ |
| 94 'cpp/private/internal_module.cc', |
| 95 'cpp/private/internal_module.h', |
| 96 ] |
| 97 }, |
86 ], | 98 ], |
87 } | 99 } |
OLD | NEW |