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

Side by Side Diff: components/pdf.gypi

Issue 705623002: Initialize V8 in PDFium from external files (in-renderer process only). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Explicitly cast size_t to int Created 6 years, 1 month 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
« no previous file with comments | « no previous file | components/pdf/renderer/BUILD.gn » ('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 2014 The Chromium Authors. All rights reserved. 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 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [{ 9 'targets': [{
10 'target_name': 'pdf_common', 10 'target_name': 'pdf_common',
(...skipping 20 matching lines...) Expand all
31 'pdf/browser/open_pdf_in_reader_prompt_client.h', 31 'pdf/browser/open_pdf_in_reader_prompt_client.h',
32 'pdf/browser/pdf_web_contents_helper.cc', 32 'pdf/browser/pdf_web_contents_helper.cc',
33 'pdf/browser/pdf_web_contents_helper.h', 33 'pdf/browser/pdf_web_contents_helper.h',
34 'pdf/browser/pdf_web_contents_helper_client.h', 34 'pdf/browser/pdf_web_contents_helper_client.h',
35 ], 35 ],
36 }, { 36 }, {
37 'target_name': 'pdf_renderer', 37 'target_name': 'pdf_renderer',
38 'type': 'static_library', 38 'type': 'static_library',
39 'dependencies': [ 39 'dependencies': [
40 '<(DEPTH)/content/content.gyp:content_renderer', 40 '<(DEPTH)/content/content.gyp:content_renderer',
41 '<(DEPTH)/gin/gin.gyp:gin',
41 '<(DEPTH)/ppapi/ppapi_internal.gyp:ppapi_shared', 42 '<(DEPTH)/ppapi/ppapi_internal.gyp:ppapi_shared',
42 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 43 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
43 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 44 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
44 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 45 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
45 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', 46 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
46 'components_resources.gyp:components_resources', 47 'components_resources.gyp:components_resources',
47 'components_strings.gyp:components_strings', 48 'components_strings.gyp:components_strings',
48 'pdf_common', 49 'pdf_common',
49 ], 50 ],
50 'sources': [ 51 'sources': [
51 'pdf/renderer/pepper_pdf_host.cc', 52 'pdf/renderer/pepper_pdf_host.cc',
52 'pdf/renderer/pepper_pdf_host.h', 53 'pdf/renderer/pepper_pdf_host.h',
53 'pdf/renderer/pdf_resource_util.cc', 54 'pdf/renderer/pdf_resource_util.cc',
54 'pdf/renderer/pdf_resource_util.h', 55 'pdf/renderer/pdf_resource_util.h',
55 'pdf/renderer/ppb_pdf_impl.cc', 56 'pdf/renderer/ppb_pdf_impl.cc',
56 'pdf/renderer/ppb_pdf_impl.h', 57 'pdf/renderer/ppb_pdf_impl.h',
57 ], 58 ],
58 'conditions': [ 59 'conditions': [
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
« no previous file with comments | « no previous file | components/pdf/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698