| Index: services/shell/public/cpp/BUILD.gn
|
| diff --git a/services/shell/public/cpp/BUILD.gn b/services/shell/public/cpp/BUILD.gn
|
| index 0d8a088a803c0486400e94220d8745e517c03aaf..f3a9490c4d3410a94a83404916a09c0bbdf53413 100644
|
| --- a/services/shell/public/cpp/BUILD.gn
|
| +++ b/services/shell/public/cpp/BUILD.gn
|
| @@ -3,14 +3,14 @@
|
| # found in the LICENSE file.
|
|
|
| # GYP version: mojo/mojo_base.gyp:mojo_application_base
|
| -source_set("cpp") {
|
| +group("cpp") {
|
| public_deps = [
|
| ":sources",
|
| ]
|
| }
|
|
|
| # TODO(rockot): Rename this to "cpp".
|
| -source_set("sources") {
|
| +static_library("sources") {
|
| sources = [
|
| "application_runner.h",
|
| "capabilities.h",
|
| @@ -55,7 +55,7 @@ source_set("sources") {
|
| }
|
|
|
| if (!is_ios) {
|
| - source_set("application_support") {
|
| + static_library("application_support") {
|
| sources = [
|
| "lib/init_commandline.cc",
|
| "lib/initialize_base_and_icu.cc",
|
| @@ -68,7 +68,7 @@ if (!is_ios) {
|
| ]
|
| }
|
|
|
| - source_set("service_test_support") {
|
| + static_library("service_test_support") {
|
| testonly = true
|
| sources = [
|
| "lib/service_test.cc",
|
|
|