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

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: fixes for mseaborn Created 6 years, 4 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 'target_name': 'ppapi_internal_module',
88 'type': 'static_library',
89 'include_dirs+': [
90 '..',
91 ],
92 'sources': [
93 'cpp/private/internal_module.cc',
94 'cpp/private/internal_module.h',
95 ]
96 },
86 ], 97 ],
87 } 98 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698