| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 46 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| 47 'components_resources.gyp:components_resources', | 47 'components_resources.gyp:components_resources', |
| 48 'components_strings.gyp:components_strings', | 48 'components_strings.gyp:components_strings', |
| 49 'pdf_common', | 49 'pdf_common', |
| 50 ], | 50 ], |
| 51 'sources': [ | 51 'sources': [ |
| 52 'pdf/renderer/pdf_resource_util.cc', | 52 'pdf/renderer/pdf_resource_util.cc', |
| 53 'pdf/renderer/pdf_resource_util.h', | 53 'pdf/renderer/pdf_resource_util.h', |
| 54 'pdf/renderer/pepper_pdf_host.cc', | 54 'pdf/renderer/pepper_pdf_host.cc', |
| 55 'pdf/renderer/pepper_pdf_host.h', | 55 'pdf/renderer/pepper_pdf_host.h', |
| 56 'pdf/renderer/ppb_pdf_impl.cc', | |
| 57 'pdf/renderer/ppb_pdf_impl.h', | |
| 58 ], | 56 ], |
| 59 'conditions': [ | 57 'conditions': [ |
| 60 ['OS=="win"', { | 58 ['OS=="win"', { |
| 61 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 59 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 62 'msvs_disabled_warnings': [4267, ], | 60 'msvs_disabled_warnings': [4267, ], |
| 63 }, | 61 }, |
| 64 ], | 62 ], |
| 65 ], | 63 ], |
| 66 }], | 64 }], |
| 67 } | 65 } |
| OLD | NEW |