| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'pepper_test_plugin', | 9 'target_name': 'pepper_test_plugin', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../../../third_party/npapi/npapi.gyp:npapi', | |
| 12 ], | 11 ], |
| 13 'include_dirs': [ | 12 'include_dirs': [ |
| 14 '../../..', # Root of Chrome Checkout | 13 '../../..', # Root of Chrome Checkout |
| 15 ], | 14 ], |
| 16 'xcode_settings': { | 15 'xcode_settings': { |
| 17 'INFOPLIST_FILE': 'Info.plist', | 16 'INFOPLIST_FILE': 'Info.plist', |
| 18 }, | 17 }, |
| 19 'sources': [ | 18 'sources': [ |
| 20 'command_buffer_pepper.cc', | |
| 21 'command_buffer_pepper.h', | |
| 22 'main.cc', | 19 'main.cc', |
| 23 'plugin_object.cc', | 20 'plugin_object.cc', |
| 24 'plugin_object.h', | 21 'plugin_object.h', |
| 25 'test_object.cc', | 22 'test_object.cc', |
| 26 'test_object.h', | 23 'test_object.h', |
| 27 'event_handler.cc', | 24 'event_handler.cc', |
| 28 'event_handler.h' | 25 'event_handler.h' |
| 29 ], | 26 ], |
| 30 'conditions': [ | 27 'conditions': [ |
| 31 ['OS=="win"', { | 28 ['OS=="win"', { |
| 32 'product_name': 'pepper_test_plugin', | 29 'product_name': 'pepper_test_plugin', |
| 33 'type': 'shared_library', | 30 'type': 'shared_library', |
| 34 'msvs_guid': 'EE00E36E-9E8C-4DFB-925E-FBE32CEDB91A', | 31 'msvs_guid': 'EE00E36E-9E8C-4DFB-925E-FBE32CEDB91A', |
| 35 'dependencies': [ | 32 'dependencies': [ |
| 36 '../../../gpu/gpu.gyp:gles2_demo_lib', | 33 '../../../gpu/gpu.gyp:pgl', |
| 37 ], | 34 ], |
| 38 'sources': [ | 35 'sources': [ |
| 39 'pepper_test_plugin.def', | 36 'pepper_test_plugin.def', |
| 40 'pepper_test_plugin.rc', | 37 'pepper_test_plugin.rc', |
| 41 ], | 38 ], |
| 42 'run_as': { | 39 'run_as': { |
| 43 'action': [ | 40 'action': [ |
| 44 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)chrome<(EXECUTABLE_SUFFIX)', | 41 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)chrome<(EXECUTABLE_SUFFIX)', |
| 45 '--no-sandbox', | 42 '--no-sandbox', |
| 46 '--internal-pepper', | 43 '--internal-pepper', |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 # 'target_name' : 'Chromium', | 75 # 'target_name' : 'Chromium', |
| 79 # 'type' : 'executable', | 76 # 'type' : 'executable', |
| 80 # 'xcode_settings' : { | 77 # 'xcode_settings' : { |
| 81 # 'ARGUMENTS' : '--renderer-startup-dialog --internal-pepper --no-san
dbox file://${SRCROOT}/test_page.html' | 78 # 'ARGUMENTS' : '--renderer-startup-dialog --internal-pepper --no-san
dbox file://${SRCROOT}/test_page.html' |
| 82 # }, | 79 # }, |
| 83 # }], | 80 # }], |
| 84 #], | 81 #], |
| 85 }, | 82 }, |
| 86 ], | 83 ], |
| 87 } | 84 } |
| OLD | NEW |