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

Side by Side Diff: components/pdf.gypi

Issue 477263003: pdf: Create a separate component for using the pdf pepper plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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
(Empty)
1 # Copyright 2014 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 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [{
10 'target_name': 'pdf_pepper_common',
11 'type': 'static_library',
12 'dependencies': [
13 '<(DEPTH)/base/base.gyp:base',
14 '<(DEPTH)/content/content.gyp:content_common',
15 '<(DEPTH)/ipc/ipc.gyp:ipc',
16 '<(DEPTH)/url/url.gyp:url_lib',
17 ],
18 'sources': [
19 'pdf/common/pdf_message_generator.cc',
20 'pdf/common/pdf_message_generator.h',
21 'pdf/common/pdf_messages.h',
22 ],
23 }, {
24 'target_name': 'pdf_pepper_renderer',
25 'type': 'static_library',
26 'dependencies': [
27 '<(DEPTH)/content/content.gyp:content_renderer',
28 '<(DEPTH)/ppapi/ppapi_internal.gyp:ppapi_shared',
29 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
30 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
31 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
32 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
33 '<(DEPTH)/webkit/glue/resources/webkit_resources.gyp:webkit_resources',
34 'pdf_pepper_common',
35 ],
36 'sources': [
37 'pdf/renderer/ppb_pdf_impl.cc',
38 'pdf/renderer/ppb_pdf_impl.h',
39 ],
40 'conditions': [
41 ['OS=="win"', {
42 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
43 'msvs_disabled_warnings': [4267, ],
44 },
45 ],
46 ],
47 }],
48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698