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

Side by Side Diff: shell/BUILD.gn

Issue 1067173003: Remove mojo:: part of mojo::shell:: nested namespace in //shell. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 8 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
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/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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 deps = [ 431 deps = [
432 ":lib", 432 ":lib",
433 "//base", 433 "//base",
434 "//mojo/edk/system", 434 "//mojo/edk/system",
435 "//shell/application_manager", 435 "//shell/application_manager",
436 ] 436 ]
437 } 437 }
438 438
439 embed_file("embed_pingable") { 439 embed_file("embed_pingable") {
440 source = "$root_build_dir/pingable_app.mojo" 440 source = "$root_build_dir/pingable_app.mojo"
441 namespace = "mojo" 441 namespace = "shell::test"
442 variable = "kPingable" 442 variable = "kPingable"
443 testonly = true 443 testonly = true
444 444
445 deps = [ 445 deps = [
446 "//shell/test:pingable_app", 446 "//shell/test:pingable_app",
447 ] 447 ]
448 } 448 }
449 449
450 mojo_native_application("apptests") { 450 mojo_native_application("apptests") {
451 output_name = "shell_apptests" 451 output_name = "shell_apptests"
(...skipping 14 matching lines...) Expand all
466 "//mojo/public/cpp/system:system", 466 "//mojo/public/cpp/system:system",
467 "//mojo/services/http_server/public/cpp", 467 "//mojo/services/http_server/public/cpp",
468 "//mojo/services/http_server/public/interfaces", 468 "//mojo/services/http_server/public/interfaces",
469 "//mojo/services/network/public/interfaces", 469 "//mojo/services/network/public/interfaces",
470 "//shell/test:bindings", 470 "//shell/test:bindings",
471 ":embed_pingable", 471 ":embed_pingable",
472 ] 472 ]
473 473
474 data_deps = [ "//services/http_server:http_server($default_toolchain)" ] 474 data_deps = [ "//services/http_server:http_server($default_toolchain)" ]
475 } 475 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698