Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
|
Lei Zhang
2014/08/26 21:58:26
Again, this file doesn't exist on trunk.
| |
| 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_pepper_common', | 10 'target_name': 'pdf_pepper_common', |
| 11 'type': 'static_library', | 11 'type': 'static_library', |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 39 'dependencies': [ | 39 'dependencies': [ |
| 40 '<(DEPTH)/content/content.gyp:content_renderer', | 40 '<(DEPTH)/content/content.gyp:content_renderer', |
| 41 '<(DEPTH)/ppapi/ppapi_internal.gyp:ppapi_shared', | 41 '<(DEPTH)/ppapi/ppapi_internal.gyp:ppapi_shared', |
| 42 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 42 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
| 43 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 43 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
| 44 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', | 44 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', |
| 45 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 45 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| 46 'pdf_pepper_common', | 46 'pdf_pepper_common', |
| 47 ], | 47 ], |
| 48 'sources': [ | 48 'sources': [ |
| 49 'pdf/renderer/pepper_pdf_host.cc', | |
| 50 'pdf/renderer/pepper_pdf_host.h', | |
| 49 'pdf/renderer/ppb_pdf_impl.cc', | 51 'pdf/renderer/ppb_pdf_impl.cc', |
| 50 'pdf/renderer/ppb_pdf_impl.h', | 52 'pdf/renderer/ppb_pdf_impl.h', |
| 51 ], | 53 ], |
| 52 'conditions': [ | 54 'conditions': [ |
| 53 ['OS=="win"', { | 55 ['OS=="win"', { |
| 54 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 56 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 55 'msvs_disabled_warnings': [4267, ], | 57 'msvs_disabled_warnings': [4267, ], |
| 56 }, | 58 }, |
| 57 ], | 59 ], |
| 58 ], | 60 ], |
| 59 }], | 61 }], |
| 60 } | 62 } |
| OLD | NEW |