Chromium Code Reviews| 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 # GYP version: mojo/public/mojo_public.gyp:mojo_application_base | 5 # GYP version: mojo/public/mojo_public.gyp:mojo_application_base |
| 6 source_set("application") { | 6 source_set("application") { |
| 7 sources = [ | 7 sources = [ |
| 8 "application_connection.h", | 8 "application_connection.h", |
| 9 "application_delegate.h", | 9 "application_delegate.h", |
| 10 "application_impl.h", | 10 "application_impl.h", |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 public_deps = [ ":application" ] | 41 public_deps = [ ":application" ] |
| 42 | 42 |
| 43 deps = [ | 43 deps = [ |
| 44 "//mojo/public/cpp/environment:standalone", | 44 "//mojo/public/cpp/environment:standalone", |
| 45 "//mojo/public/cpp/utility", | 45 "//mojo/public/cpp/utility", |
| 46 ] | 46 ] |
| 47 } | 47 } |
| 48 | 48 |
| 49 source_set("test_support") { | 49 source_set("test_support") { |
|
viettrungluu
2014/10/29 19:20:19
Probably you'll want to have a source set (called
msw
2014/10/29 19:26:45
Acknowledged.
| |
| 50 testonly = true | 50 testonly = true |
| 51 deps = [ | 51 deps = [ |
| 52 ":application", | 52 ":application", |
| 53 "//testing/gtest", | 53 "//testing/gtest", |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 sources = [ | 56 sources = [ |
| 57 "application_test_base.h", | 57 "application_test_base.h", |
| 58 "lib/application_test_base.cc", | 58 "lib/application_test_base.cc", |
| 59 "lib/application_test_main.cc", | |
| 59 ] | 60 ] |
| 60 } | 61 } |
| OLD | NEW |