OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 6 'variables': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['inside_chromium_build==0', { | 8 ['inside_chromium_build==0', { |
9 'webkit_src_dir': '../../../../..', | 9 'webkit_src_dir': '../../../../..', |
10 },{ | 10 },{ |
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 ], | 503 ], |
504 }, | 504 }, |
505 }], | 505 }], |
506 ['enable_gpu!=1', { | 506 ['enable_gpu!=1', { |
507 'sources!': [ | 507 'sources!': [ |
508 '../plugins/ppapi/ppb_graphics_3d_impl.cc', | 508 '../plugins/ppapi/ppb_graphics_3d_impl.cc', |
509 '../plugins/ppapi/ppb_graphics_3d_impl.h', | 509 '../plugins/ppapi/ppb_graphics_3d_impl.h', |
510 '../plugins/ppapi/ppb_open_gl_es_impl.cc', | 510 '../plugins/ppapi/ppb_open_gl_es_impl.cc', |
511 ], | 511 ], |
512 }], | 512 }], |
513 ['enable_gpu==1', { | |
514 'dependencies': [ | |
515 '<(DEPTH)/gpu/gpu.gyp:gpu_plugin', | |
516 ], | |
517 }], | |
518 ['OS!="win"', { | 513 ['OS!="win"', { |
519 'sources/': [['exclude', '_win\\.cc$']], | 514 'sources/': [['exclude', '_win\\.cc$']], |
520 'sources!': [ | 515 'sources!': [ |
521 'webthemeengine_impl_win.cc', | 516 'webthemeengine_impl_win.cc', |
522 ], | 517 ], |
523 }, { # else: OS=="win" | 518 }, { # else: OS=="win" |
524 'sources/': [['exclude', '_posix\\.cc$']], | 519 'sources/': [['exclude', '_posix\\.cc$']], |
525 'include_dirs': [ | 520 'include_dirs': [ |
526 '<(DEPTH)/third_party/wtl/include', | 521 '<(DEPTH)/third_party/wtl/include', |
527 ], | 522 ], |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 'conditions': [ | 578 'conditions': [ |
584 ['OS=="win"', { | 579 ['OS=="win"', { |
585 'dependencies': ['<(DEPTH)/build/win/system.gyp:cygwin'], | 580 'dependencies': ['<(DEPTH)/build/win/system.gyp:cygwin'], |
586 }], | 581 }], |
587 ], | 582 ], |
588 }, | 583 }, |
589 ], | 584 ], |
590 }], | 585 }], |
591 ], | 586 ], |
592 } | 587 } |
OLD | NEW |