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

Side by Side Diff: webkit/webkit.gyp

Issue 558035: [GPU] Get GPU process running on the mac... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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 | « webkit/tools/test_shell/mac/test_webview_delegate.mm ('k') | no next file » | 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 '../third_party/WebKit/WebKit/chromium/features.gypi', 7 '../third_party/WebKit/WebKit/chromium/features.gypi',
8 '../third_party/WebKit/WebCore/WebCore.gypi', 8 '../third_party/WebKit/WebCore/WebCore.gypi',
9 ], 9 ],
10 'variables': { 10 'variables': {
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 'glue/media/video_renderer_impl.cc', 255 'glue/media/video_renderer_impl.cc',
256 'glue/media/video_renderer_impl.h', 256 'glue/media/video_renderer_impl.h',
257 'glue/plugins/coregraphics_private_symbols_mac.h', 257 'glue/plugins/coregraphics_private_symbols_mac.h',
258 'glue/plugins/nphostapi.h', 258 'glue/plugins/nphostapi.h',
259 'glue/plugins/fake_plugin_window_tracker_mac.h', 259 'glue/plugins/fake_plugin_window_tracker_mac.h',
260 'glue/plugins/fake_plugin_window_tracker_mac.cc', 260 'glue/plugins/fake_plugin_window_tracker_mac.cc',
261 'glue/plugins/gtk_plugin_container.h', 261 'glue/plugins/gtk_plugin_container.h',
262 'glue/plugins/gtk_plugin_container.cc', 262 'glue/plugins/gtk_plugin_container.cc',
263 'glue/plugins/gtk_plugin_container_manager.h', 263 'glue/plugins/gtk_plugin_container_manager.h',
264 'glue/plugins/gtk_plugin_container_manager.cc', 264 'glue/plugins/gtk_plugin_container_manager.cc',
265 'glue/plugins/mac_gpu_plugin_container.h',
266 'glue/plugins/mac_gpu_plugin_container.cc',
267 'glue/plugins/mac_gpu_plugin_container_manager.h',
268 'glue/plugins/mac_gpu_plugin_container_manager.cc',
265 'glue/plugins/npapi_extension_thunk.cc', 269 'glue/plugins/npapi_extension_thunk.cc',
266 'glue/plugins/npapi_extension_thunk.h', 270 'glue/plugins/npapi_extension_thunk.h',
267 'glue/plugins/plugin_constants_win.h', 271 'glue/plugins/plugin_constants_win.h',
268 'glue/plugins/plugin_host.cc', 272 'glue/plugins/plugin_host.cc',
269 'glue/plugins/plugin_host.h', 273 'glue/plugins/plugin_host.h',
270 'glue/plugins/plugin_instance.cc', 274 'glue/plugins/plugin_instance.cc',
271 'glue/plugins/plugin_instance.h', 275 'glue/plugins/plugin_instance.h',
272 'glue/plugins/plugin_instance_mac.mm', 276 'glue/plugins/plugin_instance_mac.mm',
273 'glue/plugins/plugin_lib.cc', 277 'glue/plugins/plugin_lib.cc',
274 'glue/plugins/plugin_lib.h', 278 'glue/plugins/plugin_lib.h',
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 '../base/base.gyp:linux_versioninfo', 413 '../base/base.gyp:linux_versioninfo',
410 ], 414 ],
411 'sources!': [ 415 'sources!': [
412 'glue/plugins/plugin_stubs.cc', 416 'glue/plugins/plugin_stubs.cc',
413 ], 417 ],
414 }, { # else: OS!="linux" and OS!="freebsd" 418 }, { # else: OS!="linux" and OS!="freebsd"
415 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'], 419 'sources/': [['exclude', '_(linux|gtk)(_data)?\\.cc$'],
416 ['exclude', r'/gtk_']], 420 ['exclude', r'/gtk_']],
417 }], 421 }],
418 ['OS!="mac"', { 422 ['OS!="mac"', {
419 'sources/': [['exclude', '_mac\\.(cc|mm)$']], 423 'sources/': [['exclude', '_mac\\.(cc|mm)$'],
424 ['exclude', r'/mac_']],
420 }], 425 }],
421 ['OS=="win" or (OS=="linux" and target_arch!="arm")', { 426 ['enable_gpu==1', {
422 'dependencies': [ 427 'dependencies': [
423 '../gpu/gpu.gyp:gpu_plugin', 428 '../gpu/gpu.gyp:gpu_plugin',
424 ], 429 ],
425 }], 430 }],
426 ['OS!="win"', { 431 ['OS!="win"', {
427 'sources/': [['exclude', '_win\\.cc$']], 432 'sources/': [['exclude', '_win\\.cc$']],
428 'sources!': [ 433 'sources!': [
429 # These files are Windows-only now but may be ported to other 434 # These files are Windows-only now but may be ported to other
430 # platforms. 435 # platforms.
431 'glue/webaccessibility.cc', 436 'glue/webaccessibility.cc',
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 ], 549 ],
545 }, 550 },
546 ], # targets 551 ], # targets
547 } 552 }
548 553
549 # Local Variables: 554 # Local Variables:
550 # tab-width:2 555 # tab-width:2
551 # indent-tabs-mode:nil 556 # indent-tabs-mode:nil
552 # End: 557 # End:
553 # vim: set expandtab tabstop=2 shiftwidth=2: 558 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/mac/test_webview_delegate.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698