| 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//third_party/mojo/src/mojo/public/mojo.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo.gni") |
| 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 # Repack this here. | 10 # Repack this here. |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "//base", | 101 "//base", |
| 102 "//base/third_party/dynamic_annotations", | 102 "//base/third_party/dynamic_annotations", |
| 103 "//cc", | 103 "//cc", |
| 104 "//cc/blink", | 104 "//cc/blink", |
| 105 "//cc/surfaces", | 105 "//cc/surfaces", |
| 106 "//components/clipboard/public/interfaces", | 106 "//components/clipboard/public/interfaces", |
| 107 "//components/gpu/public/interfaces", | 107 "//components/gpu/public/interfaces", |
| 108 "//components/surfaces/public/interfaces", | 108 "//components/surfaces/public/interfaces", |
| 109 "//components/webcrypto", | 109 "//components/webcrypto", |
| 110 "//gin", | 110 "//gin", |
| 111 "//mandoline/services/navigation/public/interfaces", |
| 111 "//media", | 112 "//media", |
| 112 "//media/blink", | 113 "//media/blink", |
| 113 "//media/mojo", | 114 "//media/mojo", |
| 114 "//mojo/application", | 115 "//mojo/application", |
| 115 "//mojo/cc", | 116 "//mojo/cc", |
| 116 "//mojo/common", | 117 "//mojo/common", |
| 117 "//mojo/converters/surfaces", | 118 "//mojo/converters/surfaces", |
| 118 "//mojo/services/network/public/cpp", | 119 "//mojo/services/network/public/cpp", |
| 119 "//mojo/services/network/public/interfaces", | 120 "//mojo/services/network/public/interfaces", |
| 120 "//net", | 121 "//net", |
| 121 "//skia", | 122 "//skia", |
| 122 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 123 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
| 123 "//third_party/mojo/src/mojo/public/cpp/utility", | 124 "//third_party/mojo/src/mojo/public/cpp/utility", |
| 124 "//third_party/mojo/src/mojo/public/interfaces/application", | 125 "//third_party/mojo/src/mojo/public/interfaces/application", |
| 125 "//third_party/mojo_services/src/accessibility/public/interfaces", | 126 "//third_party/mojo_services/src/accessibility/public/interfaces", |
| 126 "//third_party/mojo_services/src/content_handler/public/interfaces", | 127 "//third_party/mojo_services/src/content_handler/public/interfaces", |
| 127 "//ui/mojo/events:interfaces", | 128 "//ui/mojo/events:interfaces", |
| 128 "//third_party/mojo_services/src/navigation/public/interfaces", | |
| 129 "//ui/events", | 129 "//ui/events", |
| 130 "//ui/events:gesture_detection", | 130 "//ui/events:gesture_detection", |
| 131 "//ui/events/blink", | 131 "//ui/events/blink", |
| 132 "//ui/events/gestures/blink", | 132 "//ui/events/gestures/blink", |
| 133 "//ui/gfx/geometry", | 133 "//ui/gfx/geometry", |
| 134 "//ui/native_theme", | 134 "//ui/native_theme", |
| 135 "//ui/resources:ui_test_pak", | 135 "//ui/resources:ui_test_pak", |
| 136 "//url", | 136 "//url", |
| 137 ] | 137 ] |
| 138 | 138 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 ] | 233 ] |
| 234 | 234 |
| 235 deps = [ | 235 deps = [ |
| 236 ":lib", | 236 ":lib", |
| 237 ":html_viewer", | 237 ":html_viewer", |
| 238 "//mojo/application:test_support", | 238 "//mojo/application:test_support", |
| 239 "//net:test_support", | 239 "//net:test_support", |
| 240 "//testing/gtest", | 240 "//testing/gtest", |
| 241 ] | 241 ] |
| 242 } | 242 } |
| OLD | NEW |