| 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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 5 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") | 
| 7 | 7 | 
| 8 source_set("shell") { | 8 source_set("shell") { | 
| 9   output_name = "mojo_shell" | 9   output_name = "mojo_shell" | 
| 10   sources = [ | 10   sources = [ | 
| 11     "application_fetcher.h", |  | 
| 12     "application_instance.cc", | 11     "application_instance.cc", | 
| 13     "application_instance.h", | 12     "application_instance.h", | 
| 14     "application_loader.h", | 13     "application_loader.h", | 
| 15     "application_manager.cc", | 14     "application_manager.cc", | 
| 16     "application_manager.h", | 15     "application_manager.h", | 
| 17     "capability_filter.cc", | 16     "capability_filter.cc", | 
| 18     "capability_filter.h", | 17     "capability_filter.h", | 
| 19     "connect_to_application_params.cc", | 18     "connect_to_application_params.cc", | 
| 20     "connect_to_application_params.h", | 19     "connect_to_application_params.h", | 
| 21     "content_handler_connection.cc", | 20     "content_handler_connection.cc", | 
| 22     "content_handler_connection.h", | 21     "content_handler_connection.h", | 
| 23     "data_pipe_peek.cc", | 22     "data_pipe_peek.cc", | 
| 24     "data_pipe_peek.h", | 23     "data_pipe_peek.h", | 
| 25     "fetcher.cc", | 24     "fetcher.cc", | 
| 26     "fetcher.h", | 25     "fetcher.h", | 
| 27     "identity.cc", | 26     "identity.cc", | 
| 28     "identity.h", | 27     "identity.h", | 
|  | 28     "local_fetcher.cc", | 
|  | 29     "local_fetcher.h", | 
| 29     "native_runner.h", | 30     "native_runner.h", | 
|  | 31     "network_fetcher.cc", | 
|  | 32     "network_fetcher.h", | 
| 30     "query_util.cc", | 33     "query_util.cc", | 
| 31     "query_util.h", | 34     "query_util.h", | 
| 32     "static_application_loader.cc", | 35     "static_application_loader.cc", | 
| 33     "static_application_loader.h", | 36     "static_application_loader.h", | 
| 34     "switches.cc", | 37     "switches.cc", | 
| 35     "switches.h", | 38     "switches.h", | 
|  | 39     "update_fetcher.cc", | 
|  | 40     "update_fetcher.h", | 
| 36   ] | 41   ] | 
| 37 | 42 | 
| 38   public_deps = [ | 43   public_deps = [ | 
| 39     "//base", | 44     "//base", | 
| 40     "//mojo/application/public/interfaces", | 45     "//mojo/application/public/interfaces", | 
| 41     "//mojo/common", | 46     "//mojo/common", | 
| 42     "//third_party/mojo/src/mojo/public/cpp/bindings", | 47     "//third_party/mojo/src/mojo/public/cpp/bindings", | 
| 43     "//mojo/services/network/public/interfaces", | 48     "//mojo/services/network/public/interfaces", | 
| 44     "//mojo/services/updater", | 49     "//mojo/services/updater", | 
| 45     "//url", | 50     "//url", | 
| (...skipping 26 matching lines...) Expand all  Loading... | 
| 72     "//url", | 77     "//url", | 
| 73   ] | 78   ] | 
| 74 } | 79 } | 
| 75 | 80 | 
| 76 mojom("test_bindings") { | 81 mojom("test_bindings") { | 
| 77   sources = [ | 82   sources = [ | 
| 78     "capability_filter_unittest.mojom", | 83     "capability_filter_unittest.mojom", | 
| 79     "test.mojom", | 84     "test.mojom", | 
| 80   ] | 85   ] | 
| 81 } | 86 } | 
| OLD | NEW | 
|---|