Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Side by Side Diff: ppapi/ppapi_cpp.gypi

Issue 2289983002: Remove PPAPI gyp files. (Closed)
Patch Set: visibility Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/ppapi.gyp ('k') | ppapi/ppapi_gl.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 # Shared source lists between trusted and untrusted targets are stored in
6 # ppapi_sources.gypi.
7
8 {
9 'includes': [
10 'ppapi_sources.gypi',
11 ],
12 'targets': [
13 {
14 # GN version: //ppapi/c
15 'target_name': 'ppapi_c',
16 'type': 'none',
17 'all_dependent_settings': {
18 'include_dirs+': [
19 '..',
20 ],
21 },
22 'sources': [
23 '<@(c_source_files)',
24 ],
25 },
26 {
27 # GN version: //ppapi/cpp:objects
28 'target_name': 'ppapi_cpp_objects',
29 'type': 'static_library',
30 'dependencies': [
31 'ppapi_c'
32 ],
33 'include_dirs+': [
34 '..',
35 ],
36 'sources': [
37 '<@(cpp_source_files)',
38 ],
39 },
40 {
41 # GN version: //ppapi/cpp
42 'target_name': 'ppapi_cpp',
43 'type': 'static_library',
44 'dependencies': [
45 'ppapi_c',
46 'ppapi_cpp_objects',
47 ],
48 'include_dirs+': [
49 '..',
50 ],
51 'sources': [
52 'cpp/module_embedder.h',
53 'cpp/ppp_entrypoints.cc',
54 ],
55 },
56 {
57 # GN version: //ppapi/cpp/private:internal_module
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 },
68 ],
69 }
OLDNEW
« no previous file with comments | « ppapi/ppapi.gyp ('k') | ppapi/ppapi_gl.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698