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

Side by Side Diff: ppapi/ppapi_cpp.gypi

Issue 397243004: Pepper: Remove trusted plugin loadable module. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698