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

Side by Side Diff: pdf/pdf.gyp

Issue 1346143003: Don't initialize V8 via Blink in ppapi plugins (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« pdf/pdf.cc ('K') | « pdf/pdf.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'chromium_code': 1, 3 'chromium_code': 1,
4 'pdf_engine%': 0, # 0 PDFium 4 'pdf_engine%': 0, # 0 PDFium
5 }, 5 },
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'pdf', 8 'target_name': 'pdf',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 '../base/base.gyp:base', 11 '../base/base.gyp:base',
12 '../components/components.gyp:ui_zoom', 12 '../components/components.gyp:ui_zoom',
13 '../content/content.gyp:content_common', 13 '../content/content.gyp:content_common',
14 '../gin/gin.gyp:gin',
14 '../net/net.gyp:net', 15 '../net/net.gyp:net',
15 '../ppapi/ppapi.gyp:ppapi_cpp_objects', 16 '../ppapi/ppapi.gyp:ppapi_cpp_objects',
16 '../ppapi/ppapi.gyp:ppapi_internal_module', 17 '../ppapi/ppapi.gyp:ppapi_internal_module',
17 '../third_party/pdfium/pdfium.gyp:pdfium', 18 '../third_party/pdfium/pdfium.gyp:pdfium',
18 ], 19 ],
19 'ldflags': [ '-L<(PRODUCT_DIR)',], 20 'ldflags': [ '-L<(PRODUCT_DIR)',],
20 'sources': [ 21 'sources': [
21 'chunk_stream.h', 22 'chunk_stream.h',
22 'chunk_stream.cc', 23 'chunk_stream.cc',
23 'document_loader.h', 24 'document_loader.h',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 ], 58 ],
58 }], 59 }],
59 ['OS=="win"', { 60 ['OS=="win"', {
60 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 61 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
61 'msvs_disabled_warnings': [ 4267, ], 62 'msvs_disabled_warnings': [ 4267, ],
62 }], 63 }],
63 ], 64 ],
64 }, 65 },
65 ], 66 ],
66 } 67 }
OLDNEW
« pdf/pdf.cc ('K') | « pdf/pdf.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698