| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
| 7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//mojo/tools/embed/rules.gni") | 9 import("//mojo/tools/embed/rules.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 "//base/third_party/dynamic_annotations", | 203 "//base/third_party/dynamic_annotations", |
| 204 "//base:base_static", | 204 "//base:base_static", |
| 205 "//mojo/application", | 205 "//mojo/application", |
| 206 "//mojo/common", | 206 "//mojo/common", |
| 207 "//mojo/common:tracing_impl", | 207 "//mojo/common:tracing_impl", |
| 208 "//mojo/data_pipe_utils", | 208 "//mojo/data_pipe_utils", |
| 209 "//mojo/edk/base_edk", | 209 "//mojo/edk/base_edk", |
| 210 "//mojo/edk/system", | 210 "//mojo/edk/system", |
| 211 "//mojo/public/cpp/bindings", | 211 "//mojo/public/cpp/bindings", |
| 212 "//mojo/public/interfaces/application", | 212 "//mojo/public/interfaces/application", |
| 213 "//mojo/services/media/audio/interfaces", |
| 214 "//mojo/services/media/common/interfaces", |
| 215 "//mojo/services/media/control/interfaces", |
| 213 "//mojo/services/network/interfaces", | 216 "//mojo/services/network/interfaces", |
| 214 "//mojo/services/tracing/interfaces", | 217 "//mojo/services/tracing/interfaces", |
| 215 "//services/url_response_disk_cache", | 218 "//services/url_response_disk_cache", |
| 216 "//shell/application_manager", | 219 "//shell/application_manager", |
| 217 "//url", | 220 "//url", |
| 218 ] | 221 ] |
| 219 | 222 |
| 220 public_deps = [ | 223 public_deps = [ |
| 221 ":common_lib", | 224 ":common_lib", |
| 222 ] | 225 ] |
| (...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 "${root_out_dir}/libmojo_shell.so", | 720 "${root_out_dir}/libmojo_shell.so", |
| 718 ] | 721 ] |
| 719 } else { | 722 } else { |
| 720 sources += [ "${root_out_dir}/mojo_shell" ] | 723 sources += [ "${root_out_dir}/mojo_shell" ] |
| 721 } | 724 } |
| 722 | 725 |
| 723 outputs = [ | 726 outputs = [ |
| 724 "${root_out_dir}/symbols/{{source_file_part}}", | 727 "${root_out_dir}/symbols/{{source_file_part}}", |
| 725 ] | 728 ] |
| 726 } | 729 } |
| OLD | NEW |