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

Side by Side Diff: pdf/pdf.gyp

Issue 2166193002: Handle ctrl + shift + left click on links in PDF. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Handle ctrl + shift + left click on links in PDF. Created 4 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
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'chromium_code': 1, 3 'chromium_code': 1,
4 'pdf_enable_xfa%': 0, 4 'pdf_enable_xfa%': 0,
5 'pdf_engine%': 0, # 0 PDFium 5 'pdf_engine%': 0, # 0 PDFium
6 }, 6 },
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'pdf', 9 'target_name': 'pdf',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../gin/gin.gyp:gin', 13 '../gin/gin.gyp:gin',
14 '../net/net.gyp:net', 14 '../net/net.gyp:net',
15 '../ppapi/ppapi.gyp:ppapi_cpp_objects', 15 '../ppapi/ppapi.gyp:ppapi_cpp_objects',
16 '../ppapi/ppapi.gyp:ppapi_internal_module', 16 '../ppapi/ppapi.gyp:ppapi_internal_module',
17 '../ui/base/ui_base.gyp:ui_base',
17 ], 18 ],
18 'ldflags': [ '-L<(PRODUCT_DIR)',], 19 'ldflags': [ '-L<(PRODUCT_DIR)',],
19 'sources': [ 20 'sources': [
20 'chunk_stream.h', 21 'chunk_stream.h',
21 'chunk_stream.cc', 22 'chunk_stream.cc',
22 'document_loader.h', 23 'document_loader.h',
23 'document_loader.cc', 24 'document_loader.cc',
24 'draw_utils.cc', 25 'draw_utils.cc',
25 'draw_utils.h', 26 'draw_utils.h',
26 'out_of_process_instance.cc', 27 'out_of_process_instance.cc',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 ] 63 ]
63 }], 64 }],
64 ['OS=="win"', { 65 ['OS=="win"', {
65 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 66 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
66 'msvs_disabled_warnings': [ 4267, ], 67 'msvs_disabled_warnings': [ 4267, ],
67 }], 68 }],
68 ], 69 ],
69 }, 70 },
70 ], 71 ],
71 } 72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698