| 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("//mojo/generate_mojo_shell_assets_list.gni") | 5 import("//mojo/generate_mojo_shell_assets_list.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 9 | 9 |
| 10 # We don't support building in the component build since mojo apps are | 10 # We don't support building in the component build since mojo apps are |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "//mojo/shell", | 89 "//mojo/shell", |
| 90 ] | 90 ] |
| 91 | 91 |
| 92 deps = [ | 92 deps = [ |
| 93 "//base", | 93 "//base", |
| 94 ] | 94 ] |
| 95 } | 95 } |
| 96 | 96 |
| 97 source_set("lib") { | 97 source_set("lib") { |
| 98 sources = [ | 98 sources = [ |
| 99 "about_fetcher.cc", |
| 100 "about_fetcher.h", |
| 99 "child_process.cc", | 101 "child_process.cc", |
| 100 "child_process.h", | 102 "child_process.h", |
| 101 "child_process_host.cc", | 103 "child_process_host.cc", |
| 102 "child_process_host.h", | 104 "child_process_host.h", |
| 103 "context.cc", | 105 "context.cc", |
| 104 "context.h", | 106 "context.h", |
| 105 "init.cc", | 107 "init.cc", |
| 106 "init.h", | 108 "init.h", |
| 107 "out_of_process_native_runner.cc", | 109 "out_of_process_native_runner.cc", |
| 108 "out_of_process_native_runner.h", | 110 "out_of_process_native_runner.h", |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 ] | 476 ] |
| 475 | 477 |
| 476 deps = [ | 478 deps = [ |
| 477 "//base", | 479 "//base", |
| 478 "//mojo/application/public/cpp:test_support", | 480 "//mojo/application/public/cpp:test_support", |
| 479 "//mojo/runner/test:bindings", | 481 "//mojo/runner/test:bindings", |
| 480 "//mojo/services/network/public/interfaces", | 482 "//mojo/services/network/public/interfaces", |
| 481 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 483 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 482 ] | 484 ] |
| 483 } | 485 } |
| OLD | NEW |