Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: o3d/gpu_plugin/gpu_plugin.gyp

Issue 196032: Replaced BaseNPObject with DefaultNPObject because...... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « o3d/gpu_plugin/command_buffer_unittest.cc ('k') | o3d/gpu_plugin/gpu_plugin_object.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 6 'includes': [
7 '../build/common.gypi', 7 '../build/common.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'gpu_plugin', 11 'target_name': 'gpu_plugin',
12 'type': '<(library)', 12 'type': '<(library)',
13 'dependencies': [ 13 'dependencies': [
14 '../../base/base.gyp:base', 14 '../../base/base.gyp:base',
15 ], 15 ],
16 'include_dirs': [ 16 'include_dirs': [
17 '../..', 17 '../..',
18 '../../third_party/npapi', 18 '../../third_party/npapi',
19 ], 19 ],
20 'sources': [ 20 'sources': [
21 'command_buffer.cc', 21 'command_buffer.cc',
22 'command_buffer.h', 22 'command_buffer.h',
23 'gpu_plugin.cc', 23 'gpu_plugin.cc',
24 'gpu_plugin.h', 24 'gpu_plugin.h',
25 'gpu_plugin_object.cc', 25 'gpu_plugin_object.cc',
26 'gpu_plugin_object.h', 26 'gpu_plugin_object.h',
27 'gpu_plugin_object_win.cc', 27 'gpu_plugin_object_win.cc',
28 'gpu_plugin_object_factory.cc', 28 'gpu_plugin_object_factory.cc',
29 'gpu_plugin_object_factory.h', 29 'gpu_plugin_object_factory.h',
30 'np_utils/base_np_object.cc', 30 'np_utils/default_np_object.h',
31 'np_utils/base_np_object.h',
32 'np_utils/dispatched_np_object.cc',
33 'np_utils/dispatched_np_object.h',
34 'np_utils/dynamic_np_object.cc', 31 'np_utils/dynamic_np_object.cc',
35 'np_utils/dynamic_np_object.h', 32 'np_utils/dynamic_np_object.h',
36 'np_utils/np_browser.cc', 33 'np_utils/np_browser.cc',
37 'np_utils/np_browser.h', 34 'np_utils/np_browser.h',
35 'np_utils/np_class.h',
36 'np_utils/np_dispatcher.cc',
38 'np_utils/np_dispatcher.h', 37 'np_utils/np_dispatcher.h',
39 'np_utils/np_dispatcher_specializations.h', 38 'np_utils/np_dispatcher_specializations.h',
40 'np_utils/np_object_pointer.h', 39 'np_utils/np_object_pointer.h',
41 'np_utils/np_plugin_object.h', 40 'np_utils/np_plugin_object.h',
42 'np_utils/np_plugin_object_factory.cc', 41 'np_utils/np_plugin_object_factory.cc',
43 'np_utils/np_plugin_object_factory.h', 42 'np_utils/np_plugin_object_factory.h',
44 'np_utils/np_utils.cc', 43 'np_utils/np_utils.cc',
45 'np_utils/np_utils.h', 44 'np_utils/np_utils.h',
46 ], 45 ],
47 }, 46 },
(...skipping 12 matching lines...) Expand all
60 'include_dirs': [ 59 'include_dirs': [
61 '../..', 60 '../..',
62 '../../third_party/npapi', 61 '../../third_party/npapi',
63 ], 62 ],
64 'sources': [ 63 'sources': [
65 'command_buffer_mock.h', 64 'command_buffer_mock.h',
66 'command_buffer_unittest.cc', 65 'command_buffer_unittest.cc',
67 'gpu_plugin_unittest.cc', 66 'gpu_plugin_unittest.cc',
68 'gpu_plugin_object_unittest.cc', 67 'gpu_plugin_object_unittest.cc',
69 'gpu_plugin_object_factory_unittest.cc', 68 'gpu_plugin_object_factory_unittest.cc',
70 'np_utils/base_np_object_mock.cc', 69 'np_utils/dispatched_np_object_unittest.cc',
71 'np_utils/base_np_object_mock.h', 70 'np_utils/dynamic_np_object_unittest.cc',
72 'np_utils/base_np_object_unittest.cc',
73 'np_utils/np_browser_mock.h', 71 'np_utils/np_browser_mock.h',
74 'np_utils/np_browser_stub.cc', 72 'np_utils/np_browser_stub.cc',
75 'np_utils/np_browser_stub.h', 73 'np_utils/np_browser_stub.h',
76 'np_utils/dispatched_np_object_unittest.cc', 74 'np_utils/np_class_unittest.cc',
77 'np_utils/dynamic_np_object_unittest.cc', 75 'np_utils/np_object_mock.h',
78 'np_utils/np_object_pointer_unittest.cc', 76 'np_utils/np_object_pointer_unittest.cc',
79 'np_utils/np_plugin_object_factory_mock.h', 77 'np_utils/np_plugin_object_factory_mock.h',
80 'np_utils/np_plugin_object_mock.h', 78 'np_utils/np_plugin_object_mock.h',
81 'np_utils/np_utils_unittest.cc', 79 'np_utils/np_utils_unittest.cc',
82 ], 80 ],
83 }, 81 },
84 ] 82 ]
85 } 83 }
OLDNEW
« no previous file with comments | « o3d/gpu_plugin/command_buffer_unittest.cc ('k') | o3d/gpu_plugin/gpu_plugin_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698