| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 ] | 93 ] |
| 94 | 94 |
| 95 include_dirs = [ "third_party/WebKit" ] | 95 include_dirs = [ "third_party/WebKit" ] |
| 96 | 96 |
| 97 deps = [ | 97 deps = [ |
| 98 "//base", | 98 "//base", |
| 99 "//base/third_party/dynamic_annotations", | 99 "//base/third_party/dynamic_annotations", |
| 100 "//cc", | 100 "//cc", |
| 101 "//cc/blink", | 101 "//cc/blink", |
| 102 "//cc/surfaces", | 102 "//cc/surfaces", |
| 103 "//components/webcrypto", |
| 103 "//gin", | 104 "//gin", |
| 104 "//media", | 105 "//media", |
| 105 "//media/blink", | 106 "//media/blink", |
| 106 "//media/mojo", | 107 "//media/mojo", |
| 107 "//mojo/application", | 108 "//mojo/application", |
| 108 "//mojo/cc", | 109 "//mojo/cc", |
| 109 "//mojo/common", | 110 "//mojo/common", |
| 110 "//mojo/converters/surfaces", | 111 "//mojo/converters/surfaces", |
| 111 "//mojo/services/network/public/cpp", | 112 "//mojo/services/network/public/cpp", |
| 112 "//mojo/services/network/public/interfaces", | 113 "//mojo/services/network/public/interfaces", |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 | 237 |
| 237 # TODO(msw): Move this to mojo/application:test_support; see crbug.com/477104. | 238 # TODO(msw): Move this to mojo/application:test_support; see crbug.com/477104. |
| 238 data_deps = [] | 239 data_deps = [] |
| 239 if (is_android) { | 240 if (is_android) { |
| 240 data_deps += [ "//mojo/android" ] | 241 data_deps += [ "//mojo/android" ] |
| 241 } | 242 } |
| 242 if (!is_component_build) { | 243 if (!is_component_build) { |
| 243 data_deps += [ "//mojo/shell:mojo_shell" ] | 244 data_deps += [ "//mojo/shell:mojo_shell" ] |
| 244 } | 245 } |
| 245 } | 246 } |
| OLD | NEW |