[email protected] | 126f4fb | 2011-06-27 20:18:59 | [diff] [blame] | 1 | # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
thestig | a703ee15f | 2014-10-17 19:19:19 | [diff] [blame] | 5 | # Shared source lists between trusted and untrusted targets are stored in |
[email protected] | 1f081e7a | 2011-12-01 19:33:21 | [diff] [blame] | 6 | # ppapi_sources.gypi. |
| 7 | |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 8 | { |
[email protected] | 1f081e7a | 2011-12-01 19:33:21 | [diff] [blame] | 9 | 'includes': [ |
| 10 | 'ppapi_sources.gypi', |
| 11 | ], |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 12 | 'targets': [ |
| 13 | { |
brettw | f7eb6ca | 2015-02-14 01:37:31 | [diff] [blame] | 14 | # GN version: //ppapi/c |
[email protected] | e80bdfb | 2011-10-19 20:17:17 | [diff] [blame] | 15 | 'target_name': 'ppapi_c', |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 16 | 'type': 'none', |
| 17 | 'all_dependent_settings': { |
[email protected] | ec5e04d | 2011-07-11 21:30:43 | [diff] [blame] | 18 | 'include_dirs+': [ |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 19 | '..', |
| 20 | ], |
| 21 | }, |
| 22 | 'sources': [ |
[email protected] | 7091950 | 2011-12-16 02:30:03 | [diff] [blame] | 23 | '<@(c_source_files)', |
[email protected] | a026daa | 2011-04-20 15:49:51 | [diff] [blame] | 24 | ], |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 25 | }, |
| 26 | { |
brettw | f7eb6ca | 2015-02-14 01:37:31 | [diff] [blame] | 27 | # GN version: //ppapi/cpp:objects |
[email protected] | e80bdfb | 2011-10-19 20:17:17 | [diff] [blame] | 28 | 'target_name': 'ppapi_cpp_objects', |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 29 | 'type': 'static_library', |
| 30 | 'dependencies': [ |
[email protected] | e80bdfb | 2011-10-19 20:17:17 | [diff] [blame] | 31 | 'ppapi_c' |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 32 | ], |
[email protected] | ec5e04d | 2011-07-11 21:30:43 | [diff] [blame] | 33 | 'include_dirs+': [ |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 34 | '..', |
| 35 | ], |
| 36 | 'sources': [ |
[email protected] | 7091950 | 2011-12-16 02:30:03 | [diff] [blame] | 37 | '<@(cpp_source_files)', |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 38 | ], |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 39 | }, |
| 40 | { |
brettw | f7eb6ca | 2015-02-14 01:37:31 | [diff] [blame] | 41 | # GN version: //ppapi/cpp |
[email protected] | e80bdfb | 2011-10-19 20:17:17 | [diff] [blame] | 42 | 'target_name': 'ppapi_cpp', |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 43 | 'type': 'static_library', |
| 44 | 'dependencies': [ |
[email protected] | e80bdfb | 2011-10-19 20:17:17 | [diff] [blame] | 45 | 'ppapi_c', |
| 46 | 'ppapi_cpp_objects', |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 47 | ], |
[email protected] | ec5e04d | 2011-07-11 21:30:43 | [diff] [blame] | 48 | 'include_dirs+': [ |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 49 | '..', |
| 50 | ], |
| 51 | 'sources': [ |
| 52 | 'cpp/module_embedder.h', |
| 53 | 'cpp/ppp_entrypoints.cc', |
| 54 | ], |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 55 | }, |
[email protected] | 0116711 | 2014-08-05 19:53:20 | [diff] [blame] | 56 | { |
brettw | f7eb6ca | 2015-02-14 01:37:31 | [diff] [blame] | 57 | # GN version: //ppapi/cpp/private:internal_module |
[email protected] | 0116711 | 2014-08-05 19:53:20 | [diff] [blame] | 58 | 'target_name': 'ppapi_internal_module', |
| 59 | 'type': 'static_library', |
| 60 | 'include_dirs+': [ |
| 61 | '..', |
| 62 | ], |
| 63 | 'sources': [ |
| 64 | 'cpp/private/internal_module.cc', |
| 65 | 'cpp/private/internal_module.h', |
| 66 | ] |
| 67 | }, |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 68 | ], |
[email protected] | b42370e | 2011-01-22 01:13:09 | [diff] [blame] | 69 | } |