| OLD | NEW |
| 1 # Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 # This file contains all dart, css, and html sources for Observatory. | 5 # This file contains all dart, css, and html sources for Observatory. |
| 6 { | 6 { |
| 7 'sources': [ | 7 'sources': [ |
| 8 'lib/app.dart', | 8 'lib/app.dart', |
| 9 'lib/cli.dart', | 9 'lib/cli.dart', |
| 10 'lib/cpu_profile.dart', | 10 'lib/cpu_profile.dart', |
| 11 'lib/debugger.dart', | 11 'lib/debugger.dart', |
| 12 'lib/dominator_tree.dart', | |
| 13 'lib/elements.dart', | 12 'lib/elements.dart', |
| 14 'lib/elements.html', | 13 'lib/elements.html', |
| 15 'lib/object_graph.dart', | 14 'lib/object_graph.dart', |
| 16 'lib/service.dart', | 15 'lib/service.dart', |
| 17 'lib/service_common.dart', | 16 'lib/service_common.dart', |
| 18 'lib/service_io.dart', | 17 'lib/service_io.dart', |
| 19 'lib/service_html.dart', | 18 'lib/service_html.dart', |
| 20 'lib/src/app/analytics.dart', | 19 'lib/src/app/analytics.dart', |
| 21 'lib/src/app/application.dart', | 20 'lib/src/app/application.dart', |
| 22 'lib/src/app/chart.dart', | 21 'lib/src/app/chart.dart', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 'lib/src/elements/function_ref.dart', | 67 'lib/src/elements/function_ref.dart', |
| 69 'lib/src/elements/function_ref.html', | 68 'lib/src/elements/function_ref.html', |
| 70 'lib/src/elements/function_view.dart', | 69 'lib/src/elements/function_view.dart', |
| 71 'lib/src/elements/function_view.html', | 70 'lib/src/elements/function_view.html', |
| 72 'lib/src/elements/general_error.dart', | 71 'lib/src/elements/general_error.dart', |
| 73 'lib/src/elements/general_error.html', | 72 'lib/src/elements/general_error.html', |
| 74 'lib/src/elements/heap_map.dart', | 73 'lib/src/elements/heap_map.dart', |
| 75 'lib/src/elements/heap_map.html', | 74 'lib/src/elements/heap_map.html', |
| 76 'lib/src/elements/heap_profile.dart', | 75 'lib/src/elements/heap_profile.dart', |
| 77 'lib/src/elements/heap_profile.html', | 76 'lib/src/elements/heap_profile.html', |
| 77 'lib/src/elements/heap_snapshot.dart', |
| 78 'lib/src/elements/heap_snapshot.html', |
| 78 'lib/src/elements/inbound_reference.dart', | 79 'lib/src/elements/inbound_reference.dart', |
| 79 'lib/src/elements/inbound_reference.html', | 80 'lib/src/elements/inbound_reference.html', |
| 80 'lib/src/elements/instance_ref.dart', | 81 'lib/src/elements/instance_ref.dart', |
| 81 'lib/src/elements/instance_ref.html', | 82 'lib/src/elements/instance_ref.html', |
| 82 'lib/src/elements/instance_view.dart', | 83 'lib/src/elements/instance_view.dart', |
| 83 'lib/src/elements/instance_view.html', | 84 'lib/src/elements/instance_view.html', |
| 84 'lib/src/elements/io_view.dart', | 85 'lib/src/elements/io_view.dart', |
| 85 'lib/src/elements/io_view.html', | 86 'lib/src/elements/io_view.html', |
| 86 'lib/src/elements/isolate_reconnect.dart', | 87 'lib/src/elements/isolate_reconnect.dart', |
| 87 'lib/src/elements/isolate_reconnect.html', | 88 'lib/src/elements/isolate_reconnect.html', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 'lib/src/elements/img/dart_icon.png', | 135 'lib/src/elements/img/dart_icon.png', |
| 135 'lib/src/elements/img/isolate_icon.png', | 136 'lib/src/elements/img/isolate_icon.png', |
| 136 'lib/src/service/object.dart', | 137 'lib/src/service/object.dart', |
| 137 'lib/tracer.dart', | 138 'lib/tracer.dart', |
| 138 'lib/utils.dart', | 139 'lib/utils.dart', |
| 139 'web/index.html', | 140 'web/index.html', |
| 140 'web/main.dart', | 141 'web/main.dart', |
| 141 'web/favicon.ico', | 142 'web/favicon.ico', |
| 142 ], | 143 ], |
| 143 } | 144 } |
| OLD | NEW |