| 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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 'link_settings': { | 583 'link_settings': { |
| 584 'libraries': [ | 584 'libraries': [ |
| 585 '-landroid', # ANativeWindow | 585 '-landroid', # ANativeWindow |
| 586 ], | 586 ], |
| 587 }, | 587 }, |
| 588 'dependencies': [ | 588 'dependencies': [ |
| 589 'content.gyp:content_jni_headers', | 589 'content.gyp:content_jni_headers', |
| 590 'content.gyp:common_aidl', | 590 'content.gyp:common_aidl', |
| 591 ], | 591 ], |
| 592 }], | 592 }], |
| 593 ['OS=="linux"', { |
| 594 'dependencies': [ |
| 595 '<(DEPTH)/build/linux/system.gyp:dridrm', |
| 596 ], |
| 597 'sources': [ |
| 598 'common/gpu/client/gpu_memory_buffer_impl_intel_drm.cc', |
| 599 'common/gpu/client/gpu_memory_buffer_impl_intel_drm.h', |
| 600 ], |
| 601 'link_settings': { |
| 602 'libraries': [ |
| 603 '-ldrm_intel', |
| 604 ], |
| 605 }, |
| 606 }], |
| 593 ['use_pango == 1', { | 607 ['use_pango == 1', { |
| 594 'dependencies': [ | 608 'dependencies': [ |
| 595 '../build/linux/system.gyp:pangocairo', | 609 '../build/linux/system.gyp:pangocairo', |
| 596 ], | 610 ], |
| 597 'sources!': [ | 611 'sources!': [ |
| 598 'common/font_list_ozone.cc', | 612 'common/font_list_ozone.cc', |
| 599 ], | 613 ], |
| 600 }], | 614 }], |
| 601 ['use_x11 == 1', { | 615 ['use_x11 == 1', { |
| 602 'include_dirs': [ | 616 'include_dirs': [ |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 'common/sandbox_linux/bpf_renderer_policy_linux.cc', | 806 'common/sandbox_linux/bpf_renderer_policy_linux.cc', |
| 793 'common/sandbox_linux/bpf_renderer_policy_linux.h', | 807 'common/sandbox_linux/bpf_renderer_policy_linux.h', |
| 794 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', | 808 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', |
| 795 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', | 809 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', |
| 796 ], | 810 ], |
| 797 }, { | 811 }, { |
| 798 'defines': ['USE_SECCOMP_BPF'], | 812 'defines': ['USE_SECCOMP_BPF'], |
| 799 }], | 813 }], |
| 800 ], | 814 ], |
| 801 } | 815 } |
| OLD | NEW |