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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 'link_settings': { | 538 'link_settings': { |
539 'libraries': [ | 539 'libraries': [ |
540 '-landroid', # ANativeWindow | 540 '-landroid', # ANativeWindow |
541 ], | 541 ], |
542 }, | 542 }, |
543 'dependencies': [ | 543 'dependencies': [ |
544 'content.gyp:content_jni_headers', | 544 'content.gyp:content_jni_headers', |
545 'content.gyp:common_aidl', | 545 'content.gyp:common_aidl', |
546 ], | 546 ], |
547 }], | 547 }], |
| 548 ['OS=="linux"', { |
| 549 'dependencies': [ |
| 550 '<(DEPTH)/build/linux/system.gyp:dridrm', |
| 551 ], |
| 552 'sources': [ |
| 553 'common/gpu/client/gpu_memory_buffer_impl_intel_drm.cc', |
| 554 'common/gpu/client/gpu_memory_buffer_impl_intel_drm.h', |
| 555 ], |
| 556 'link_settings': { |
| 557 'libraries': [ |
| 558 '-ldrm_intel', |
| 559 ], |
| 560 }, |
| 561 }], |
548 ['toolkit_uses_gtk == 1', { | 562 ['toolkit_uses_gtk == 1', { |
549 'dependencies': [ | 563 'dependencies': [ |
550 '../build/linux/system.gyp:gtk', | 564 '../build/linux/system.gyp:gtk', |
551 ], | 565 ], |
552 }], | 566 }], |
553 ['use_pango == 1', { | 567 ['use_pango == 1', { |
554 'dependencies': [ | 568 'dependencies': [ |
555 '../build/linux/system.gyp:pangocairo', | 569 '../build/linux/system.gyp:pangocairo', |
556 ], | 570 ], |
557 'sources!': [ | 571 'sources!': [ |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 'common/sandbox_linux/bpf_renderer_policy_linux.cc', | 762 'common/sandbox_linux/bpf_renderer_policy_linux.cc', |
749 'common/sandbox_linux/bpf_renderer_policy_linux.h', | 763 'common/sandbox_linux/bpf_renderer_policy_linux.h', |
750 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', | 764 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', |
751 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', | 765 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', |
752 ], | 766 ], |
753 }, { | 767 }, { |
754 'defines': ['USE_SECCOMP_BPF'], | 768 'defines': ['USE_SECCOMP_BPF'], |
755 }], | 769 }], |
756 ], | 770 ], |
757 } | 771 } |
OLD | NEW |