| 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 29 matching lines...) Expand all Loading... |
| 40 } | 40 } |
| 41 | 41 |
| 42 if (is_android) { | 42 if (is_android) { |
| 43 import("//build/config/android/config.gni") | 43 import("//build/config/android/config.gni") |
| 44 import("//build/config/android/rules.gni") | 44 import("//build/config/android/rules.gni") |
| 45 } | 45 } |
| 46 | 46 |
| 47 if (!mojo_use_prebuilt_mojo_shell) { | 47 if (!mojo_use_prebuilt_mojo_shell) { |
| 48 shell_common_deps = [ | 48 shell_common_deps = [ |
| 49 ":parent_lib", | 49 ":parent_lib", |
| 50 "crash", |
| 50 "//base", | 51 "//base", |
| 51 "//base/allocator", | 52 "//base/allocator", |
| 52 "//build/config/sanitizers:deps", | 53 "//build/config/sanitizers:deps", |
| 53 "//mojo/common", | 54 "//mojo/common", |
| 54 "//mojo/environment:chromium", | 55 "//mojo/environment:chromium", |
| 55 ] | 56 ] |
| 56 shell_common_data_deps = [ ":mojo_shell_child" ] | 57 shell_common_data_deps = [ ":mojo_shell_child" ] |
| 57 | 58 |
| 58 if (is_android) { | 59 if (is_android) { |
| 59 shared_library("mojo_shell") { | 60 shared_library("mojo_shell") { |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 "${root_out_dir}/libmojo_shell.so", | 576 "${root_out_dir}/libmojo_shell.so", |
| 576 ] | 577 ] |
| 577 } else { | 578 } else { |
| 578 sources += [ "${root_out_dir}/mojo_shell" ] | 579 sources += [ "${root_out_dir}/mojo_shell" ] |
| 579 } | 580 } |
| 580 | 581 |
| 581 outputs = [ | 582 outputs = [ |
| 582 "${root_out_dir}/symbols/{{source_file_part}}", | 583 "${root_out_dir}/symbols/{{source_file_part}}", |
| 583 ] | 584 ] |
| 584 } | 585 } |
| OLD | NEW |