| 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 'conditions': [ | 6 'conditions': [ |
| 7 ['disable_nacl!=1', { | 7 ['disable_nacl!=1', { |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 ['OS=="linux"', { | 9 ['OS=="linux"', { |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 '<@(nacl_defines)', | 28 '<@(nacl_defines)', |
| 29 ], | 29 ], |
| 30 'sources': [ | 30 'sources': [ |
| 31 'nacl/nacl_helper_linux.cc', | 31 'nacl/nacl_helper_linux.cc', |
| 32 '../base/posix/unix_domain_socket_linux.cc', | 32 '../base/posix/unix_domain_socket_linux.cc', |
| 33 '../components/nacl/loader/nacl_sandbox_linux.cc', | 33 '../components/nacl/loader/nacl_sandbox_linux.cc', |
| 34 '../content/common/child_process_sandbox_support_impl_shm_linux.
cc', | 34 '../content/common/child_process_sandbox_support_impl_shm_linux.
cc', |
| 35 '../content/common/sandbox_init_linux.cc', | 35 '../content/common/sandbox_init_linux.cc', |
| 36 '../content/common/sandbox_seccomp_bpf_linux.cc', | 36 '../content/common/sandbox_seccomp_bpf_linux.cc', |
| 37 '../content/public/common/content_switches.cc', | 37 '../content/public/common/content_switches.cc', |
| 38 '../content/public/common/content_switches_util.cc', |
| 38 ], | 39 ], |
| 39 'conditions': [ | 40 'conditions': [ |
| 40 ['toolkit_uses_gtk == 1', { | 41 ['toolkit_uses_gtk == 1', { |
| 41 'dependencies': [ | 42 'dependencies': [ |
| 42 '../build/linux/system.gyp:gtk', | 43 '../build/linux/system.gyp:gtk', |
| 43 ], | 44 ], |
| 44 }], | 45 }], |
| 45 ['use_glib == 1', { | 46 ['use_glib == 1', { |
| 46 'dependencies': [ | 47 'dependencies': [ |
| 47 '../build/linux/system.gyp:glib', | 48 '../build/linux/system.gyp:glib', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 61 'link_settings': { | 62 'link_settings': { |
| 62 'ldflags': ['-pie'], | 63 'ldflags': ['-pie'], |
| 63 }, | 64 }, |
| 64 }, | 65 }, |
| 65 ], | 66 ], |
| 66 }], | 67 }], |
| 67 ], | 68 ], |
| 68 }], | 69 }], |
| 69 ], | 70 ], |
| 70 } | 71 } |
| OLD | NEW |