| 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 '../base/base.gyp:base_static', | 8 '../base/base.gyp:base_static', |
| 9 '../crypto/crypto.gyp:crypto', | 9 '../crypto/crypto.gyp:crypto', |
| 10 '../net/net.gyp:http_server', | 10 '../net/net.gyp:http_server', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 '../webkit/support/webkit_support.gyp:dom_storage', | 21 '../webkit/support/webkit_support.gyp:dom_storage', |
| 22 '../webkit/support/webkit_support.gyp:webkit_resources', | 22 '../webkit/support/webkit_support.gyp:webkit_resources', |
| 23 '../webkit/support/webkit_support.gyp:webkit_strings', | 23 '../webkit/support/webkit_support.gyp:webkit_strings', |
| 24 ], | 24 ], |
| 25 'include_dirs': [ | 25 'include_dirs': [ |
| 26 '..', | 26 '..', |
| 27 '<(INTERMEDIATE_DIR)', | 27 '<(INTERMEDIATE_DIR)', |
| 28 ], | 28 ], |
| 29 'sources': [ | 29 'sources': [ |
| 30 'port/browser/render_widget_host_view_port.h', | 30 'port/browser/render_widget_host_view_port.h', |
| 31 'public/browser/accelerated_window_interface.h', | |
| 32 'public/browser/access_token_store.h', | 31 'public/browser/access_token_store.h', |
| 33 'public/browser/browser_accessibility_state.h', | 32 'public/browser/browser_accessibility_state.h', |
| 34 'public/browser/browser_child_process_host.h', | 33 'public/browser/browser_child_process_host.h', |
| 35 'public/browser/browser_child_process_host_delegate.cc', | 34 'public/browser/browser_child_process_host_delegate.cc', |
| 36 'public/browser/browser_child_process_host_delegate.h', | 35 'public/browser/browser_child_process_host_delegate.h', |
| 37 'public/browser/browser_child_process_host_iterator.cc', | 36 'public/browser/browser_child_process_host_iterator.cc', |
| 38 'public/browser/browser_child_process_host_iterator.h', | 37 'public/browser/browser_child_process_host_iterator.h', |
| 39 'public/browser/browser_context.h', | 38 'public/browser/browser_context.h', |
| 40 'public/browser/browser_main_parts.h', | 39 'public/browser/browser_main_parts.h', |
| 41 'public/browser/browser_main_runner.h', | 40 'public/browser/browser_main_runner.h', |
| (...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 914 ], | 913 ], |
| 915 }], | 914 }], |
| 916 ['input_speech==0', { | 915 ['input_speech==0', { |
| 917 'sources/': [ | 916 'sources/': [ |
| 918 ['exclude', '^browser/speech/'], | 917 ['exclude', '^browser/speech/'], |
| 919 ], | 918 ], |
| 920 }], | 919 }], |
| 921 ], | 920 ], |
| 922 } | 921 } |
| 923 | 922 |
| OLD | NEW |