| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'plugins_common', | 8 'target_name': 'plugins_common', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'defines': [ | 10 'defines': [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 '<(DEPTH)/ui/ui.gyp:ui', | 23 '<(DEPTH)/ui/ui.gyp:ui', |
| 24 '<(DEPTH)/ui/ui.gyp:ui_resources', | 24 '<(DEPTH)/ui/ui.gyp:ui_resources', |
| 25 ], | 25 ], |
| 26 'sources': [ | 26 'sources': [ |
| 27 '../plugins/webplugininfo.cc', | 27 '../plugins/webplugininfo.cc', |
| 28 '../plugins/webplugininfo.h', | 28 '../plugins/webplugininfo.h', |
| 29 '../plugins/plugin_constants.cc', | 29 '../plugins/plugin_constants.cc', |
| 30 '../plugins/plugin_constants.h', | 30 '../plugins/plugin_constants.h', |
| 31 '../plugins/plugin_switches.cc', | 31 '../plugins/plugin_switches.cc', |
| 32 '../plugins/plugin_switches.h', | 32 '../plugins/plugin_switches.h', |
| 33 '../plugins/npapi/plugin_utils.cc', | |
| 34 '../plugins/npapi/plugin_utils.h', | |
| 35 '../common/plugins/ppapi/ppapi_utils.cc', | 33 '../common/plugins/ppapi/ppapi_utils.cc', |
| 36 '../common/plugins/ppapi/ppapi_utils.h', | 34 '../common/plugins/ppapi/ppapi_utils.h', |
| 37 ], | 35 ], |
| 38 'conditions': [ | 36 'conditions': [ |
| 39 ['toolkit_uses_gtk == 1', { | 37 ['toolkit_uses_gtk == 1', { |
| 40 'dependencies': [ | 38 'dependencies': [ |
| 41 '<(DEPTH)/build/linux/system.gyp:gtk', | 39 '<(DEPTH)/build/linux/system.gyp:gtk', |
| 42 ], | 40 ], |
| 43 'sources/': [['exclude', '_x11\\.cc$']], | 41 'sources/': [['exclude', '_x11\\.cc$']], |
| 44 }], | 42 }], |
| 45 ['OS!="win"', { | 43 ['OS!="win"', { |
| 46 'sources/': [['exclude', '_win\\.cc$']], | 44 'sources/': [['exclude', '_win\\.cc$']], |
| 47 }, { # else: OS=="win" | 45 }, { # else: OS=="win" |
| 48 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 46 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 49 'msvs_disabled_warnings': [ 4800, 4267 ], | 47 'msvs_disabled_warnings': [ 4800, 4267 ], |
| 50 'sources/': [['exclude', '_posix\\.cc$']], | 48 'sources/': [['exclude', '_posix\\.cc$']], |
| 51 'include_dirs': [ | 49 'include_dirs': [ |
| 52 '<(DEPTH)/third_party/wtl/include', | 50 '<(DEPTH)/third_party/wtl/include', |
| 53 ], | 51 ], |
| 54 }], | 52 }], |
| 55 ], | 53 ], |
| 56 }, | 54 }, |
| 57 ], | 55 ], |
| 58 } | 56 } |
| 59 | 57 |
| OLD | NEW |