| 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 '../../../gpu/gpu.gyp:pgl', | |
| 12 '../../../third_party/npapi/npapi.gyp:npapi', | 11 '../../../third_party/npapi/npapi.gyp:npapi', |
| 13 ], | 12 ], |
| 14 'include_dirs': [ | 13 'include_dirs': [ |
| 15 '../../..', # Root of Chrome Checkout | 14 '../../..', # Root of Chrome Checkout |
| 16 ], | 15 ], |
| 17 'xcode_settings': { | 16 'xcode_settings': { |
| 18 'INFOPLIST_FILE': 'Info.plist', | 17 'INFOPLIST_FILE': 'Info.plist', |
| 19 }, | 18 }, |
| 20 'sources': [ | 19 'sources': [ |
| 20 'command_buffer_pepper.cc', |
| 21 'command_buffer_pepper.h', |
| 21 'main.cc', | 22 'main.cc', |
| 22 'plugin_object.cc', | 23 'plugin_object.cc', |
| 23 'plugin_object.h', | 24 'plugin_object.h', |
| 24 'test_object.cc', | 25 'test_object.cc', |
| 25 'test_object.h', | 26 'test_object.h', |
| 26 'event_handler.cc', | 27 'event_handler.cc', |
| 27 'event_handler.h' | 28 'event_handler.h' |
| 28 ], | 29 ], |
| 29 'conditions': [ | 30 'conditions': [ |
| 30 ['OS=="win"', { | 31 ['OS=="win"', { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 # 'target_name' : 'Chromium', | 78 # 'target_name' : 'Chromium', |
| 78 # 'type' : 'executable', | 79 # 'type' : 'executable', |
| 79 # 'xcode_settings' : { | 80 # 'xcode_settings' : { |
| 80 # 'ARGUMENTS' : '--renderer-startup-dialog --internal-pepper --no-san
dbox file://${SRCROOT}/test_page.html' | 81 # 'ARGUMENTS' : '--renderer-startup-dialog --internal-pepper --no-san
dbox file://${SRCROOT}/test_page.html' |
| 81 # }, | 82 # }, |
| 82 # }], | 83 # }], |
| 83 #], | 84 #], |
| 84 }, | 85 }, |
| 85 ], | 86 ], |
| 86 } | 87 } |
| OLD | NEW |