| 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 30 matching lines...) Expand all Loading... |
| 41 'browser/devtools/devtools_network_transaction_factory.cc', | 41 'browser/devtools/devtools_network_transaction_factory.cc', |
| 42 'browser/devtools/devtools_network_transaction_factory.h', | 42 'browser/devtools/devtools_network_transaction_factory.h', |
| 43 'browser/devtools/devtools_network_upload_data_stream.cc', | 43 'browser/devtools/devtools_network_upload_data_stream.cc', |
| 44 'browser/devtools/devtools_network_upload_data_stream.h', | 44 'browser/devtools/devtools_network_upload_data_stream.h', |
| 45 'browser/devtools/devtools_protocol.cc', | 45 'browser/devtools/devtools_protocol.cc', |
| 46 'browser/devtools/devtools_protocol.h', | 46 'browser/devtools/devtools_protocol.h', |
| 47 ], | 47 ], |
| 48 'conditions': [ | 48 'conditions': [ |
| 49 ['OS!="android"', { | 49 ['OS!="android"', { |
| 50 'dependencies': [ | 50 'dependencies': [ |
| 51 '../components/components.gyp:devtools_http_handler', | |
| 52 '../net/net.gyp:http_server', | 51 '../net/net.gyp:http_server', |
| 53 '../skia/skia.gyp:skia', | 52 '../skia/skia.gyp:skia', |
| 54 '../third_party/icu/icu.gyp:icui18n', | 53 '../third_party/icu/icu.gyp:icui18n', |
| 55 '../third_party/icu/icu.gyp:icuuc', | 54 '../third_party/icu/icu.gyp:icuuc', |
| 56 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 55 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 57 'chrome_resources.gyp:chrome_extra_resources', | 56 'chrome_resources.gyp:chrome_extra_resources', |
| 58 'chrome_resources.gyp:chrome_resources', | 57 'chrome_resources.gyp:chrome_resources', |
| 59 'chrome_resources.gyp:chrome_strings', | 58 'chrome_resources.gyp:chrome_strings', |
| 60 'chrome_resources.gyp:theme_resources', | 59 'chrome_resources.gyp:theme_resources', |
| 61 'common/extensions/api/api.gyp:chrome_api', | 60 'common/extensions/api/api.gyp:chrome_api', |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 'defines': [ | 121 'defines': [ |
| 123 'DEBUG_DEVTOOLS=1', | 122 'DEBUG_DEVTOOLS=1', |
| 124 ], | 123 ], |
| 125 }], | 124 }], |
| 126 ], | 125 ], |
| 127 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 126 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 128 'msvs_disabled_warnings': [ 4267, ], | 127 'msvs_disabled_warnings': [ 4267, ], |
| 129 }, | 128 }, |
| 130 ], | 129 ], |
| 131 } | 130 } |
| OLD | NEW |