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

Side by Side Diff: shell/BUILD.gn

Issue 877093003: Add a missing BUILD dep for app_child_process.mojom. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 | « no previous file | no next file » | 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("//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/tools/bindings/mojom.gni") 7 import("//mojo/public/tools/bindings/mojom.gni")
8 import("//testing/test.gni") 8 import("//testing/test.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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 ":java", 353 ":java",
354 "//base:base_java", 354 "//base:base_java",
355 ] 355 ]
356 } 356 }
357 } 357 }
358 358
359 mojom("app_child_process_bindings") { 359 mojom("app_child_process_bindings") {
360 sources = [ 360 sources = [
361 "app_child_process.mojom", 361 "app_child_process.mojom",
362 ] 362 ]
363
364 deps = [
365 "//mojo/public/interfaces/application",
366 ]
363 } 367 }
364 368
365 mojom("external_application_registrar_bindings") { 369 mojom("external_application_registrar_bindings") {
366 sources = [ 370 sources = [
367 "external_application_registrar.mojom", 371 "external_application_registrar.mojom",
368 ] 372 ]
369 373
370 deps = [ 374 deps = [
371 "//mojo/public/interfaces/application", 375 "//mojo/public/interfaces/application",
372 ] 376 ]
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 498
495 deps -= [ 499 deps -= [
496 ":lib", 500 ":lib",
497 ":external_application_registrar_connection", 501 ":external_application_registrar_connection",
498 ":external_application_registrar_bindings", 502 ":external_application_registrar_bindings",
499 "//shell/domain_socket", 503 "//shell/domain_socket",
500 "//shell/domain_socket:tests", 504 "//shell/domain_socket:tests",
501 ] 505 ]
502 } 506 }
503 } 507 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698