| 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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 'link_settings': { | 546 'link_settings': { |
| 547 'libraries': [ | 547 'libraries': [ |
| 548 '-landroid', # ANativeWindow | 548 '-landroid', # ANativeWindow |
| 549 ], | 549 ], |
| 550 }, | 550 }, |
| 551 'dependencies': [ | 551 'dependencies': [ |
| 552 'content.gyp:content_jni_headers', | 552 'content.gyp:content_jni_headers', |
| 553 'content.gyp:common_aidl', | 553 'content.gyp:common_aidl', |
| 554 ], | 554 ], |
| 555 }], | 555 }], |
| 556 ['OS=="linux"', { |
| 557 'dependencies': [ |
| 558 '<(DEPTH)/build/linux/system.gyp:dridrm', |
| 559 ], |
| 560 'sources': [ |
| 561 'common/gpu/client/gpu_memory_buffer_impl_intel_drm.cc', |
| 562 'common/gpu/client/gpu_memory_buffer_impl_intel_drm.h', |
| 563 ], |
| 564 'link_settings': { |
| 565 'libraries': [ |
| 566 '-ldrm_intel', |
| 567 ], |
| 568 }, |
| 569 }], |
| 556 ['toolkit_uses_gtk == 1', { | 570 ['toolkit_uses_gtk == 1', { |
| 557 'dependencies': [ | 571 'dependencies': [ |
| 558 '../build/linux/system.gyp:gtk', | 572 '../build/linux/system.gyp:gtk', |
| 559 ], | 573 ], |
| 560 }], | 574 }], |
| 561 ['use_pango == 1', { | 575 ['use_pango == 1', { |
| 562 'dependencies': [ | 576 'dependencies': [ |
| 563 '../build/linux/system.gyp:pangocairo', | 577 '../build/linux/system.gyp:pangocairo', |
| 564 ], | 578 ], |
| 565 'sources!': [ | 579 'sources!': [ |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 'common/sandbox_linux/bpf_renderer_policy_linux.cc', | 770 'common/sandbox_linux/bpf_renderer_policy_linux.cc', |
| 757 'common/sandbox_linux/bpf_renderer_policy_linux.h', | 771 'common/sandbox_linux/bpf_renderer_policy_linux.h', |
| 758 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', | 772 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', |
| 759 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', | 773 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', |
| 760 ], | 774 ], |
| 761 }, { | 775 }, { |
| 762 'defines': ['USE_SECCOMP_BPF'], | 776 'defines': ['USE_SECCOMP_BPF'], |
| 763 }], | 777 }], |
| 764 ], | 778 ], |
| 765 } | 779 } |
| OLD | NEW |