OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'dependencies': [ | 6 'dependencies': [ |
7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
8 '../components/tracing.gyp:tracing', | 8 '../components/tracing.gyp:tracing', |
9 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', | 9 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', |
10 '../net/net.gyp:net', | 10 '../net/net.gyp:net', |
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 '../media/media.gyp:media', | 517 '../media/media.gyp:media', |
518 '../media/media.gyp:shared_memory_support', | 518 '../media/media.gyp:shared_memory_support', |
519 '../mojo/mojo.gyp:mojo_environment_chromium', | 519 '../mojo/mojo.gyp:mojo_environment_chromium', |
520 '../mojo/mojo.gyp:mojo_system_impl', | 520 '../mojo/mojo.gyp:mojo_system_impl', |
521 '../third_party/WebKit/public/blink.gyp:blink', | 521 '../third_party/WebKit/public/blink.gyp:blink', |
522 '../ui/gl/gl.gyp:gl', | 522 '../ui/gl/gl.gyp:gl', |
523 '../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', | 523 '../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', |
524 '../webkit/common/webkit_common.gyp:webkit_common', | 524 '../webkit/common/webkit_common.gyp:webkit_common', |
525 '../webkit/storage_browser.gyp:webkit_storage_browser', | 525 '../webkit/storage_browser.gyp:webkit_storage_browser', |
526 '../webkit/storage_common.gyp:webkit_storage_common', | 526 '../webkit/storage_common.gyp:webkit_storage_common', |
527 'content.gyp:webkit_version', | 527 ], |
| 528 'actions': [ |
| 529 { |
| 530 'action_name': 'generate_webkit_version', |
| 531 'inputs': [ |
| 532 '<(script)', |
| 533 '<(lastchange)', |
| 534 '<(template)', |
| 535 ], |
| 536 'outputs': [ |
| 537 '<(SHARED_INTERMEDIATE_DIR)/webkit_version.h', |
| 538 ], |
| 539 'action': ['python', |
| 540 '<(script)', |
| 541 '-f', '<(lastchange)', |
| 542 '<(template)', |
| 543 '<@(_outputs)', |
| 544 ], |
| 545 'variables': { |
| 546 'script': '<(DEPTH)/build/util/version.py', |
| 547 'lastchange': '<(DEPTH)/build/util/LASTCHANGE.blink', |
| 548 'template': 'webkit_version.h.in', |
| 549 }, |
| 550 }, |
528 ], | 551 ], |
529 }], | 552 }], |
530 ['OS=="mac"', { | 553 ['OS=="mac"', { |
531 'dependencies': [ | 554 'dependencies': [ |
532 '../webkit/webkit_resources.gyp:webkit_resources', | 555 '../webkit/webkit_resources.gyp:webkit_resources', |
533 ], | 556 ], |
534 'sources': [ | 557 'sources': [ |
535 'common/gpu/client/gpu_memory_buffer_impl_io_surface.cc', | 558 'common/gpu/client/gpu_memory_buffer_impl_io_surface.cc', |
536 'common/gpu/client/gpu_memory_buffer_impl_io_surface.h', | 559 'common/gpu/client/gpu_memory_buffer_impl_io_surface.h', |
537 ], | 560 ], |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
761 'common/sandbox_linux/bpf_renderer_policy_linux.cc', | 784 'common/sandbox_linux/bpf_renderer_policy_linux.cc', |
762 'common/sandbox_linux/bpf_renderer_policy_linux.h', | 785 'common/sandbox_linux/bpf_renderer_policy_linux.h', |
763 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', | 786 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', |
764 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', | 787 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', |
765 ], | 788 ], |
766 }, { | 789 }, { |
767 'defines': ['USE_SECCOMP_BPF'], | 790 'defines': ['USE_SECCOMP_BPF'], |
768 }], | 791 }], |
769 ], | 792 ], |
770 } | 793 } |
OLD | NEW |