| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 '../third_party/icu/icu.gyp:icui18n', | 54 '../third_party/icu/icu.gyp:icui18n', |
| 55 '../third_party/icu/icu.gyp:icuuc', | 55 '../third_party/icu/icu.gyp:icuuc', |
| 56 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 56 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 57 'chrome_resources.gyp:chrome_extra_resources', | 57 'chrome_resources.gyp:chrome_extra_resources', |
| 58 'chrome_resources.gyp:chrome_resources', | 58 'chrome_resources.gyp:chrome_resources', |
| 59 'chrome_resources.gyp:chrome_strings', | 59 'chrome_resources.gyp:chrome_strings', |
| 60 'chrome_resources.gyp:theme_resources', | 60 'chrome_resources.gyp:theme_resources', |
| 61 'common/extensions/api/api.gyp:chrome_api', | 61 'common/extensions/api/api.gyp:chrome_api', |
| 62 ], | 62 ], |
| 63 'sources': [ | 63 'sources': [ |
| 64 'browser/devtools/chrome_devtools_discovery_provider.cc', | |
| 65 'browser/devtools/chrome_devtools_discovery_provider.h', | |
| 66 'browser/devtools/device/adb/adb_client_socket.cc', | 64 'browser/devtools/device/adb/adb_client_socket.cc', |
| 67 'browser/devtools/device/adb/adb_client_socket.h', | 65 'browser/devtools/device/adb/adb_client_socket.h', |
| 68 'browser/devtools/device/adb/adb_device_provider.cc', | 66 'browser/devtools/device/adb/adb_device_provider.cc', |
| 69 'browser/devtools/device/adb/adb_device_provider.h', | 67 'browser/devtools/device/adb/adb_device_provider.h', |
| 70 'browser/devtools/device/android_device_info_query.cc', | 68 'browser/devtools/device/android_device_info_query.cc', |
| 71 'browser/devtools/device/android_device_manager.cc', | 69 'browser/devtools/device/android_device_manager.cc', |
| 72 'browser/devtools/device/android_device_manager.h', | 70 'browser/devtools/device/android_device_manager.h', |
| 73 'browser/devtools/device/android_web_socket.cc', | 71 'browser/devtools/device/android_web_socket.cc', |
| 74 'browser/devtools/device/devtools_android_bridge.cc', | 72 'browser/devtools/device/devtools_android_bridge.cc', |
| 75 'browser/devtools/device/devtools_android_bridge.h', | 73 'browser/devtools/device/devtools_android_bridge.h', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 'defines': [ | 122 'defines': [ |
| 125 'DEBUG_DEVTOOLS=1', | 123 'DEBUG_DEVTOOLS=1', |
| 126 ], | 124 ], |
| 127 }], | 125 }], |
| 128 ], | 126 ], |
| 129 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 127 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 130 'msvs_disabled_warnings': [ 4267, ], | 128 'msvs_disabled_warnings': [ 4267, ], |
| 131 }, | 129 }, |
| 132 ], | 130 ], |
| 133 } | 131 } |
| OLD | NEW |