| 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 'browser/debugger/devtools_resources.gyp:devtools_resources', | 7 'browser/debugger/devtools_resources.gyp:devtools_resources', |
| 8 'browser/speech/proto/speech_proto.gyp:speech_proto', | 8 'browser/speech/proto/speech_proto.gyp:speech_proto', |
| 9 '../base/base.gyp:base_static', | 9 '../base/base.gyp:base_static', |
| 10 '../crypto/crypto.gyp:crypto', | 10 '../crypto/crypto.gyp:crypto', |
| (...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 845 '../build/linux/system.gyp:fontconfig', | 845 '../build/linux/system.gyp:fontconfig', |
| 846 '../build/linux/system.gyp:gtk', | 846 '../build/linux/system.gyp:gtk', |
| 847 # For XShm* in backing_store_x.cc | 847 # For XShm* in backing_store_x.cc |
| 848 '../build/linux/system.gyp:x11', | 848 '../build/linux/system.gyp:x11', |
| 849 '../dbus/dbus.gyp:dbus', | 849 '../dbus/dbus.gyp:dbus', |
| 850 ], | 850 ], |
| 851 }], | 851 }], |
| 852 ['OS=="linux"', { | 852 ['OS=="linux"', { |
| 853 'dependencies': [ | 853 'dependencies': [ |
| 854 '../build/linux/system.gyp:udev', | 854 '../build/linux/system.gyp:udev', |
| 855 '../sandbox/sandbox.gyp:libc_urandom_override', |
| 855 ], | 856 ], |
| 856 # Set LINUX_SANDBOX_PATH for Linux, including Chrome OS | 857 # Set LINUX_SANDBOX_PATH for Linux, including Chrome OS |
| 857 'conditions': [ | 858 'conditions': [ |
| 858 ['linux_sandbox_path != ""', { | 859 ['linux_sandbox_path != ""', { |
| 859 'defines': [ | 860 'defines': [ |
| 860 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', | 861 'LINUX_SANDBOX_PATH="<(linux_sandbox_path)"', |
| 861 ], | 862 ], |
| 862 }], | 863 }], |
| 863 ], | 864 ], |
| 864 }], | 865 }], |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 996 ], | 997 ], |
| 997 }], | 998 }], |
| 998 ['input_speech==0', { | 999 ['input_speech==0', { |
| 999 'sources/': [ | 1000 'sources/': [ |
| 1000 ['exclude', '^browser/speech/'], | 1001 ['exclude', '^browser/speech/'], |
| 1001 ], | 1002 ], |
| 1002 }], | 1003 }], |
| 1003 ], | 1004 ], |
| 1004 } | 1005 } |
| 1005 | 1006 |
| OLD | NEW |