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

Side by Side Diff: ppapi/ppapi_shared_proxy.gypi

Issue 6694011: Run PPB_CharSet_Dev logic directly in the plugin process. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 9 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
« no previous file with comments | « no previous file | ppapi/proxy/ppapi_messages_internal.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'ppapi_shared_impl', 8 'target_name': 'ppapi_shared_impl',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 'ppapi_c', 11 'ppapi_c',
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../third_party/icu/icu.gyp:icuuc',
13 ], 14 ],
14 'include_dirs': [ 15 'include_dirs': [
15 '..', 16 '..',
16 ], 17 ],
17 'sources': [ 18 'sources': [
18 'shared_impl/audio_impl.cc', 19 'shared_impl/audio_impl.cc',
19 'shared_impl/audio_impl.h', 20 'shared_impl/audio_impl.h',
21 'shared_impl/char_set_impl.cc',
22 'shared_impl/char_set_impl.h',
20 'shared_impl/image_data_impl.cc', 23 'shared_impl/image_data_impl.cc',
21 'shared_impl/image_data_impl.h', 24 'shared_impl/image_data_impl.h',
22 ], 25 ],
23 'conditions': [ 26 'conditions': [
24 ['OS=="win"', { 27 ['OS=="win"', {
25 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', 28 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B',
26 }], 29 }],
27 ], 30 ],
28 }, 31 },
29 { 32 {
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 ['OS=="win"', { 152 ['OS=="win"', {
150 }], 153 }],
151 ['OS=="linux"', { 154 ['OS=="linux"', {
152 }], 155 }],
153 ['OS=="mac"', { 156 ['OS=="mac"', {
154 }] 157 }]
155 ], 158 ],
156 }, 159 },
157 ], 160 ],
158 } 161 }
OLDNEW
« no previous file with comments | « no previous file | ppapi/proxy/ppapi_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698