OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 'variables': { | 8 'variables': { |
9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 '../content/browser/debugger/devtools_remote_service.h', | 470 '../content/browser/debugger/devtools_remote_service.h', |
471 '../content/browser/debugger/devtools_handler.cc', | 471 '../content/browser/debugger/devtools_handler.cc', |
472 '../content/browser/debugger/devtools_handler.h', | 472 '../content/browser/debugger/devtools_handler.h', |
473 '../content/browser/debugger/devtools_toggle_action.h', | 473 '../content/browser/debugger/devtools_toggle_action.h', |
474 '../content/browser/debugger/devtools_window.cc', | 474 '../content/browser/debugger/devtools_window.cc', |
475 '../content/browser/debugger/devtools_window.h', | 475 '../content/browser/debugger/devtools_window.h', |
476 '../content/browser/debugger/extension_ports_remote_service.cc', | 476 '../content/browser/debugger/extension_ports_remote_service.cc', |
477 '../content/browser/debugger/extension_ports_remote_service.h', | 477 '../content/browser/debugger/extension_ports_remote_service.h', |
478 '../content/browser/debugger/inspectable_tab_proxy.cc', | 478 '../content/browser/debugger/inspectable_tab_proxy.cc', |
479 '../content/browser/debugger/inspectable_tab_proxy.h', | 479 '../content/browser/debugger/inspectable_tab_proxy.h', |
| 480 '../content/browser/debugger/worker_devtools_manager.cc', |
| 481 '../content/browser/debugger/worker_devtools_manager.h', |
| 482 '../content/browser/debugger/worker_devtools_message_filter.cc', |
| 483 '../content/browser/debugger/worker_devtools_message_filter.h', |
480 ], | 484 ], |
481 'conditions': [ | 485 'conditions': [ |
482 ['toolkit_uses_gtk == 1', { | 486 ['toolkit_uses_gtk == 1', { |
483 'dependencies': [ | 487 'dependencies': [ |
484 '../build/linux/system.gyp:gtk', | 488 '../build/linux/system.gyp:gtk', |
485 ], | 489 ], |
486 }], | 490 }], |
487 ], | 491 ], |
488 }, | 492 }, |
489 { | 493 { |
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1681 }], # targets | 1685 }], # targets |
1682 }], # os_posix == 1 and OS != "mac" | 1686 }], # os_posix == 1 and OS != "mac" |
1683 ], # 'conditions' | 1687 ], # 'conditions' |
1684 } | 1688 } |
1685 | 1689 |
1686 # Local Variables: | 1690 # Local Variables: |
1687 # tab-width:2 | 1691 # tab-width:2 |
1688 # indent-tabs-mode:nil | 1692 # indent-tabs-mode:nil |
1689 # End: | 1693 # End: |
1690 # vim: set expandtab tabstop=2 shiftwidth=2: | 1694 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |