OLD | NEW |
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 25 matching lines...) Expand all Loading... |
36 ], | 36 ], |
37 }, { | 37 }, { |
38 'target_name': 'pdf_renderer', | 38 'target_name': 'pdf_renderer', |
39 'type': 'static_library', | 39 'type': 'static_library', |
40 'dependencies': [ | 40 'dependencies': [ |
41 '<(DEPTH)/content/content.gyp:content_renderer', | 41 '<(DEPTH)/content/content.gyp:content_renderer', |
42 '<(DEPTH)/gin/gin.gyp:gin', | 42 '<(DEPTH)/gin/gin.gyp:gin', |
43 '<(DEPTH)/ppapi/ppapi_internal.gyp:ppapi_shared', | 43 '<(DEPTH)/ppapi/ppapi_internal.gyp:ppapi_shared', |
44 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 44 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
45 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 45 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
46 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', | 46 '<(DEPTH)/v8/src/v8.gyp:v8', |
47 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 47 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
48 'components_resources.gyp:components_resources', | 48 'components_resources.gyp:components_resources', |
49 'components_strings.gyp:components_strings', | 49 'components_strings.gyp:components_strings', |
50 'pdf_common', | 50 'pdf_common', |
51 ], | 51 ], |
52 'sources': [ | 52 'sources': [ |
53 'pdf/renderer/pepper_pdf_host.cc', | 53 'pdf/renderer/pepper_pdf_host.cc', |
54 'pdf/renderer/pepper_pdf_host.h', | 54 'pdf/renderer/pepper_pdf_host.h', |
55 ], | 55 ], |
56 'conditions': [ | 56 'conditions': [ |
57 ['OS=="win"', { | 57 ['OS=="win"', { |
58 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 58 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
59 'msvs_disabled_warnings': [4267, ], | 59 'msvs_disabled_warnings': [4267, ], |
60 }, | 60 }, |
61 ], | 61 ], |
62 ], | 62 ], |
63 }], | 63 }], |
64 } | 64 } |
OLD | NEW |