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 ['use_pango == 1', { | 570 ['use_pango == 1', { |
557 'dependencies': [ | 571 'dependencies': [ |
558 '../build/linux/system.gyp:pangocairo', | 572 '../build/linux/system.gyp:pangocairo', |
559 ], | 573 ], |
560 'sources!': [ | 574 'sources!': [ |
561 'common/font_list_ozone.cc', | 575 'common/font_list_ozone.cc', |
562 ], | 576 ], |
563 }], | 577 }], |
564 ['use_x11 == 1', { | 578 ['use_x11 == 1', { |
565 'include_dirs': [ | 579 'include_dirs': [ |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
751 'common/sandbox_linux/bpf_renderer_policy_linux.cc', | 765 'common/sandbox_linux/bpf_renderer_policy_linux.cc', |
752 'common/sandbox_linux/bpf_renderer_policy_linux.h', | 766 'common/sandbox_linux/bpf_renderer_policy_linux.h', |
753 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', | 767 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', |
754 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', | 768 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', |
755 ], | 769 ], |
756 }, { | 770 }, { |
757 'defines': ['USE_SECCOMP_BPF'], | 771 'defines': ['USE_SECCOMP_BPF'], |
758 }], | 772 }], |
759 ], | 773 ], |
760 } | 774 } |
OLD | NEW |