| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "webclipboard_impl.cc", | 69 "webclipboard_impl.cc", |
| 70 "webclipboard_impl.h", | 70 "webclipboard_impl.h", |
| 71 "webcookiejar_impl.cc", | 71 "webcookiejar_impl.cc", |
| 72 "webcookiejar_impl.h", | 72 "webcookiejar_impl.h", |
| 73 "weblayertreeview_impl.cc", | 73 "weblayertreeview_impl.cc", |
| 74 "weblayertreeview_impl.h", | 74 "weblayertreeview_impl.h", |
| 75 "webmediaplayer_factory.cc", | 75 "webmediaplayer_factory.cc", |
| 76 "webmediaplayer_factory.h", | 76 "webmediaplayer_factory.h", |
| 77 "webmimeregistry_impl.cc", | 77 "webmimeregistry_impl.cc", |
| 78 "webmimeregistry_impl.h", | 78 "webmimeregistry_impl.h", |
| 79 "webnotificationmanager_impl.cc", |
| 80 "webnotificationmanager_impl.h", |
| 79 "webscheduler_impl.cc", | 81 "webscheduler_impl.cc", |
| 80 "webscheduler_impl.h", | 82 "webscheduler_impl.h", |
| 81 "websockethandle_impl.cc", | 83 "websockethandle_impl.cc", |
| 82 "websockethandle_impl.h", | 84 "websockethandle_impl.h", |
| 83 "webstoragenamespace_impl.cc", | 85 "webstoragenamespace_impl.cc", |
| 84 "webstoragenamespace_impl.h", | 86 "webstoragenamespace_impl.h", |
| 85 "webthemeengine_impl.cc", | 87 "webthemeengine_impl.cc", |
| 86 "webthemeengine_impl.h", | 88 "webthemeengine_impl.h", |
| 87 "webthread_impl.cc", | 89 "webthread_impl.cc", |
| 88 "webthread_impl.h", | 90 "webthread_impl.h", |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 | 235 |
| 234 # TODO(msw): Move this to mojo/application:test_support; see crbug.com/477104. | 236 # TODO(msw): Move this to mojo/application:test_support; see crbug.com/477104. |
| 235 data_deps = [] | 237 data_deps = [] |
| 236 if (is_android) { | 238 if (is_android) { |
| 237 data_deps += [ "//mojo/android" ] | 239 data_deps += [ "//mojo/android" ] |
| 238 } | 240 } |
| 239 if (!is_component_build) { | 241 if (!is_component_build) { |
| 240 data_deps += [ "//mojo/shell:mojo_shell" ] | 242 data_deps += [ "//mojo/shell:mojo_shell" ] |
| 241 } | 243 } |
| 242 } | 244 } |
| OLD | NEW |