| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN version: //chrome/browser/devtools | 8 # GN version: //chrome/browser/devtools |
| 9 'target_name': 'debugger', | 9 'target_name': 'debugger', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 'conditions': [ | 96 'conditions': [ |
| 97 ['OS=="android"', { | 97 ['OS=="android"', { |
| 98 'dependencies!': [ | 98 'dependencies!': [ |
| 99 '../third_party/libusb/libusb.gyp:libusb', | 99 '../third_party/libusb/libusb.gyp:libusb', |
| 100 ], | 100 ], |
| 101 'sources!': [ | 101 'sources!': [ |
| 102 'browser/devtools/device/usb/android_rsa.cc', | 102 'browser/devtools/device/usb/android_rsa.cc', |
| 103 'browser/devtools/browser_list_tabcontents_provider.cc', | 103 'browser/devtools/browser_list_tabcontents_provider.cc', |
| 104 'browser/devtools/devtools_file_system_indexer.cc', | 104 'browser/devtools/devtools_file_system_indexer.cc', |
| 105 'browser/devtools/devtools_target_impl.cc', | 105 'browser/devtools/devtools_target_impl.cc', |
| 106 'browser/devtools/devtools_ui_bindings.cc', |
| 106 'browser/devtools/devtools_window.cc', | 107 'browser/devtools/devtools_window.cc', |
| 107 'browser/devtools/devtools_window_base.cc', | 108 'browser/devtools/devtools_window_base.cc', |
| 108 'browser/devtools/remote_debugging_server.cc', | 109 'browser/devtools/remote_debugging_server.cc', |
| 109 ], | 110 ], |
| 110 }], | 111 }], |
| 111 ['debug_devtools==1', { | 112 ['debug_devtools==1', { |
| 112 'defines': [ | 113 'defines': [ |
| 113 'DEBUG_DEVTOOLS=1', | 114 'DEBUG_DEVTOOLS=1', |
| 114 ], | 115 ], |
| 115 }], | 116 }], |
| 116 ], | 117 ], |
| 117 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 118 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 118 'msvs_disabled_warnings': [ 4267, ], | 119 'msvs_disabled_warnings': [ 4267, ], |
| 119 }, | 120 }, |
| 120 ], | 121 ], |
| 121 } | 122 } |
| OLD | NEW |