| OLD | NEW |
| 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_sdk.gni") | 5 import("../../mojo_sdk.gni") |
| 6 | 6 |
| 7 # GYP version: mojo/public/mojo_public.gyp:mojo_application_base | 7 # GYP version: mojo/public/mojo_public.gyp:mojo_application_base |
| 8 mojo_sdk_source_set("application") { | 8 mojo_sdk_source_set("application") { |
| 9 sources = [ | 9 sources = [ |
| 10 "application_impl_base.h", | 10 "application_impl_base.h", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 mojo_sdk_source_set("test_support") { | 47 mojo_sdk_source_set("test_support") { |
| 48 testonly = true | 48 testonly = true |
| 49 sources = [ | 49 sources = [ |
| 50 "application_test_base.h", | 50 "application_test_base.h", |
| 51 "lib/application_test_base.cc", | 51 "lib/application_test_base.cc", |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 deps = [ | 54 deps = [ |
| 55 ":application", | 55 ":application", |
| 56 "//testing/gtest", | |
| 57 ] | 56 ] |
| 58 | 57 |
| 59 mojo_sdk_deps = [ | 58 mojo_sdk_deps = [ |
| 59 "mojo/public:gtest", |
| 60 "mojo/public/cpp/bindings", | 60 "mojo/public/cpp/bindings", |
| 61 "mojo/public/cpp/environment", | 61 "mojo/public/cpp/environment", |
| 62 "mojo/public/cpp/system", | 62 "mojo/public/cpp/system", |
| 63 "mojo/public/interfaces/application", | 63 "mojo/public/interfaces/application", |
| 64 ] | 64 ] |
| 65 } | 65 } |
| 66 | 66 |
| 67 mojo_sdk_source_set("test_support_standalone") { | 67 mojo_sdk_source_set("test_support_standalone") { |
| 68 testonly = true | 68 testonly = true |
| 69 sources = [ | 69 sources = [ |
| 70 "lib/application_test_main.cc", | 70 "lib/application_test_main.cc", |
| 71 ] | 71 ] |
| 72 | 72 |
| 73 public_deps = [ | 73 public_deps = [ |
| 74 ":test_support", | 74 ":test_support", |
| 75 ] | 75 ] |
| 76 | 76 |
| 77 deps = [ | 77 deps = [ |
| 78 ":application", | 78 ":application", |
| 79 ] | 79 ] |
| 80 | 80 |
| 81 mojo_sdk_deps = [ | 81 mojo_sdk_deps = [ |
| 82 "mojo/public/interfaces/application", | 82 "mojo/public/interfaces/application", |
| 83 "mojo/public/cpp/environment:standalone", | 83 "mojo/public/cpp/environment:standalone", |
| 84 "mojo/public/cpp/system", | 84 "mojo/public/cpp/system", |
| 85 "mojo/public/cpp/utility", | 85 "mojo/public/cpp/utility", |
| 86 "mojo/public/interfaces/application", | 86 "mojo/public/interfaces/application", |
| 87 ] | 87 ] |
| 88 } | 88 } |
| OLD | NEW |