Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: mojo/runner/BUILD.gn

Issue 1338283003: Revert of Move fetching logic out of ApplicationManager, eliminate url mappings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/mojo_shell.gyp ('k') | mojo/runner/about_fetcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
109 "scoped_user_data_dir.cc", 111 "scoped_user_data_dir.cc",
110 "scoped_user_data_dir.h", 112 "scoped_user_data_dir.h",
111 "task_runners.cc", 113 "task_runners.cc",
112 "task_runners.h", 114 "task_runners.h",
115 "url_resolver.cc",
116 "url_resolver.h",
113 ] 117 ]
114 118
115 deps = [ 119 deps = [
116 ":child_process_bindings", 120 ":child_process_bindings",
117 ":in_process_native_runner", 121 ":in_process_native_runner",
118 ":native_application_support", 122 ":native_application_support",
119 "//base", 123 "//base",
120 "//base/third_party/dynamic_annotations", 124 "//base/third_party/dynamic_annotations",
121 "//base:base_static", 125 "//base:base_static",
122 "//components/devtools_service/public/cpp", 126 "//components/devtools_service/public/cpp",
123 "//components/devtools_service/public/interfaces", 127 "//components/devtools_service/public/interfaces",
124 "//mojo/application/public/cpp", 128 "//mojo/application/public/cpp",
125 "//mojo/common:tracing_impl", 129 "//mojo/common:tracing_impl",
126 "//mojo/fetcher",
127 "//mojo/message_pump", 130 "//mojo/message_pump",
128 "//mojo/services/network/public/interfaces", 131 "//mojo/services/network/public/interfaces",
129 "//mojo/services/tracing/public/cpp", 132 "//mojo/services/tracing/public/cpp",
130 "//mojo/services/tracing/public/interfaces", 133 "//mojo/services/tracing/public/interfaces",
131 "//mojo/shell", 134 "//mojo/shell",
132 "//mojo/util:filename_util", 135 "//mojo/util:filename_util",
133 "//third_party/mojo/src/mojo/edk/system", 136 "//third_party/mojo/src/mojo/edk/system",
134 "//ui/gl", 137 "//ui/gl",
135 "//url", 138 "//url",
136 ] 139 ]
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 412
410 deps = [ 413 deps = [
411 "//mojo/application/public/interfaces", 414 "//mojo/application/public/interfaces",
412 ] 415 ]
413 416
414 import_dirs = [ "//mojo/services" ] 417 import_dirs = [ "//mojo/services" ]
415 } 418 }
416 419
417 test("mojo_runner_unittests") { 420 test("mojo_runner_unittests") {
418 sources = [ 421 sources = [
419 "../fetcher/about_fetcher_unittest.cc", 422 "about_fetcher_unittest.cc",
420 "../fetcher/url_resolver_unittest.cc",
421 "child_process_host_unittest.cc", 423 "child_process_host_unittest.cc",
422 "data_pipe_peek_unittest.cc", 424 "data_pipe_peek_unittest.cc",
423 "in_process_native_runner_unittest.cc", 425 "in_process_native_runner_unittest.cc",
424 "native_runner_unittest.cc", 426 "native_runner_unittest.cc",
425 "shell_test_base.cc", 427 "shell_test_base.cc",
426 "shell_test_base.h", 428 "shell_test_base.h",
427 "shell_test_base_android.cc", 429 "shell_test_base_android.cc",
428 "shell_test_base_unittest.cc", 430 "shell_test_base_unittest.cc",
429 "shell_test_main.cc", 431 "shell_test_main.cc",
432 "url_resolver_unittest.cc",
430 ] 433 ]
431 434
432 deps = [ 435 deps = [
433 ":in_process_native_runner", 436 ":in_process_native_runner",
434 ":lib", 437 ":lib",
435 "//base", 438 "//base",
436 "//base:i18n", 439 "//base:i18n",
437 "//base/test:test_support", 440 "//base/test:test_support",
438 "//mojo/application/public/cpp", 441 "//mojo/application/public/cpp",
439 "//mojo/common", 442 "//mojo/common",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 ] 481 ]
479 482
480 deps = [ 483 deps = [
481 "//base", 484 "//base",
482 "//mojo/application/public/cpp:test_support", 485 "//mojo/application/public/cpp:test_support",
483 "//mojo/runner/test:bindings", 486 "//mojo/runner/test:bindings",
484 "//mojo/services/network/public/interfaces", 487 "//mojo/services/network/public/interfaces",
485 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", 488 "//third_party/mojo/src/mojo/public/cpp/bindings:callback",
486 ] 489 ]
487 } 490 }
OLDNEW
« no previous file with comments | « mojo/mojo_shell.gyp ('k') | mojo/runner/about_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698