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', |
11 'type': 'static_library', | 11 'type': 'static_library', |
12 'dependencies': [ | 12 'dependencies': [ |
13 '<(DEPTH)/base/base.gyp:base', | 13 '<(DEPTH)/base/base.gyp:base', |
14 '<(DEPTH)/content/content.gyp:content_common', | 14 '<(DEPTH)/content/content.gyp:content_common', |
15 '<(DEPTH)/ipc/ipc.gyp:ipc', | 15 '<(DEPTH)/ipc/ipc.gyp:ipc', |
16 '<(DEPTH)/url/url.gyp:url_lib', | 16 '<(DEPTH)/url/url.gyp:url_lib', |
17 '<(DEPTH)/url/ipc/url_ipc.gyp:url_ipc', | |
18 ], | 17 ], |
19 'sources': [ | 18 'sources': [ |
20 'pdf/common/pdf_message_generator.cc', | 19 'pdf/common/pdf_message_generator.cc', |
21 'pdf/common/pdf_message_generator.h', | 20 'pdf/common/pdf_message_generator.h', |
22 'pdf/common/pdf_messages.h', | 21 'pdf/common/pdf_messages.h', |
23 ], | 22 ], |
24 }, { | 23 }, { |
25 'target_name': 'pdf_browser', | 24 'target_name': 'pdf_browser', |
26 'type': 'static_library', | 25 'type': 'static_library', |
27 'dependencies': [ | 26 'dependencies': [ |
(...skipping 27 matching lines...) Expand all Loading... |
55 ], | 54 ], |
56 'conditions': [ | 55 'conditions': [ |
57 ['OS=="win"', { | 56 ['OS=="win"', { |
58 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 57 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
59 'msvs_disabled_warnings': [4267, ], | 58 'msvs_disabled_warnings': [4267, ], |
60 }, | 59 }, |
61 ], | 60 ], |
62 ], | 61 ], |
63 }], | 62 }], |
64 } | 63 } |
OLD | NEW |