Chromium Code Reviews| 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 21 matching lines...) Expand all Loading... | |
| 32 '../plugins/plugin_switches.h', | 32 '../plugins/plugin_switches.h', |
| 33 '../plugins/npapi/plugin_constants_win.cc', | 33 '../plugins/npapi/plugin_constants_win.cc', |
| 34 '../plugins/npapi/plugin_constants_win.h', | 34 '../plugins/npapi/plugin_constants_win.h', |
| 35 '../plugins/npapi/plugin_list.cc', | 35 '../plugins/npapi/plugin_list.cc', |
| 36 '../plugins/npapi/plugin_list.h', | 36 '../plugins/npapi/plugin_list.h', |
| 37 '../plugins/npapi/plugin_list_mac.mm', | 37 '../plugins/npapi/plugin_list_mac.mm', |
| 38 '../plugins/npapi/plugin_list_posix.cc', | 38 '../plugins/npapi/plugin_list_posix.cc', |
| 39 '../plugins/npapi/plugin_list_win.cc', | 39 '../plugins/npapi/plugin_list_win.cc', |
| 40 '../plugins/npapi/plugin_utils.cc', | 40 '../plugins/npapi/plugin_utils.cc', |
| 41 '../plugins/npapi/plugin_utils.h', | 41 '../plugins/npapi/plugin_utils.h', |
| 42 '../common/plugins/ppapi/ppapi_utils.cc', | |
|
jamesr
2013/05/20 23:42:30
is the plan to move the rest of the files referenc
ananta
2013/05/20 23:49:20
Eventually yes. Would be a big change though. Will
| |
| 43 '../common/plugins/ppapi/ppapi_utils.h', | |
| 42 ], | 44 ], |
| 43 'conditions': [ | 45 'conditions': [ |
| 44 ['toolkit_uses_gtk == 1', { | 46 ['toolkit_uses_gtk == 1', { |
| 45 'dependencies': [ | 47 'dependencies': [ |
| 46 '<(DEPTH)/build/linux/system.gyp:gtk', | 48 '<(DEPTH)/build/linux/system.gyp:gtk', |
| 47 ], | 49 ], |
| 48 'sources/': [['exclude', '_x11\\.cc$']], | 50 'sources/': [['exclude', '_x11\\.cc$']], |
| 49 }], | 51 }], |
| 50 ['OS!="mac"', { | 52 ['OS!="mac"', { |
| 51 'sources/': [['exclude', '_mac\\.(cc|mm)$']], | 53 'sources/': [['exclude', '_mac\\.(cc|mm)$']], |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 284 '<(DEPTH)/third_party/wtl/include', | 286 '<(DEPTH)/third_party/wtl/include', |
| 285 ], | 287 ], |
| 286 'sources!': [ | 288 'sources!': [ |
| 287 'plugins/plugin_stubs.cc', | 289 'plugins/plugin_stubs.cc', |
| 288 ], | 290 ], |
| 289 }], | 291 }], |
| 290 ], | 292 ], |
| 291 } | 293 } |
| 292 ], | 294 ], |
| 293 } | 295 } |
| OLD | NEW |