| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/public/mojo_application.gni") | 5 import("//services/shell/public/cpp/service.gni") |
| 6 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//services/shell/public/service_manifest.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 group("all") { | 10 group("all") { |
| 11 testonly = true | 11 testonly = true |
| 12 data_deps = [ | 12 data_deps = [ |
| 13 ":navigation", | 13 ":navigation", |
| 14 ":navigation_unittests", | 14 ":navigation_unittests", |
| 15 ] | 15 ] |
| 16 } | 16 } |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "//testing/gtest", | 92 "//testing/gtest", |
| 93 ] | 93 ] |
| 94 | 94 |
| 95 data_deps = [ | 95 data_deps = [ |
| 96 ":navigation", | 96 ":navigation", |
| 97 ":unittest_manifest", | 97 ":unittest_manifest", |
| 98 "//services/ui/test_wm", | 98 "//services/ui/test_wm", |
| 99 ] | 99 ] |
| 100 } | 100 } |
| 101 | 101 |
| 102 mojo_application_manifest("manifest") { | 102 service_manifest("manifest") { |
| 103 type = "exe" | 103 type = "exe" |
| 104 application_name = "navigation" | 104 name = "navigation" |
| 105 source = "manifest.json" | 105 source = "manifest.json" |
| 106 } | 106 } |
| 107 | 107 |
| 108 mojo_application_manifest("unittest_manifest") { | 108 service_manifest("unittest_manifest") { |
| 109 type = "exe" | 109 type = "exe" |
| 110 application_name = "navigation_unittests" | 110 name = "navigation_unittests" |
| 111 source = "unittest_manifest.json" | 111 source = "unittest_manifest.json" |
| 112 } | 112 } |
| 113 | 113 |
| 114 repack("pak") { | 114 repack("pak") { |
| 115 sources = [ | 115 sources = [ |
| 116 "$root_gen_dir/blink/devtools_resources.pak", | 116 "$root_gen_dir/blink/devtools_resources.pak", |
| 117 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak"
, | 117 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak"
, |
| 118 "$root_gen_dir/blink/public/resources/blink_resources.pak", | 118 "$root_gen_dir/blink/public/resources/blink_resources.pak", |
| 119 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", | 119 "$root_gen_dir/content/app/resources/content_resources_100_percent.pak", |
| 120 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", | 120 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 139 "//net:net_resources", | 139 "//net:net_resources", |
| 140 "//third_party/WebKit/public:image_resources", | 140 "//third_party/WebKit/public:image_resources", |
| 141 "//third_party/WebKit/public:resources", | 141 "//third_party/WebKit/public:resources", |
| 142 "//ui/resources", | 142 "//ui/resources", |
| 143 "//ui/strings", | 143 "//ui/strings", |
| 144 "//ui/views/resources", | 144 "//ui/views/resources", |
| 145 ] | 145 ] |
| 146 | 146 |
| 147 output = "$root_out_dir/navigation.pak" | 147 output = "$root_out_dir/navigation.pak" |
| 148 } | 148 } |
| OLD | NEW |