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

Side by Side Diff: mojo/public/cpp/application/BUILD.gn

Issue 695593002: Add Chromium environment application test support. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Cleanup. Created 6 years, 1 month 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 # 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 ":application", 52 ":application",
53 "//mojo/public/cpp/bindings", 53 "//mojo/public/cpp/bindings",
54 "//mojo/public/cpp/environment", 54 "//mojo/public/cpp/environment",
55 "//mojo/public/cpp/system", 55 "//mojo/public/cpp/system",
56 "//testing/gtest", 56 "//testing/gtest",
57 ] 57 ]
58 58
59 sources = [ 59 sources = [
60 "application_test_base.h", 60 "application_test_base.h",
61 "lib/application_test_base.cc", 61 "lib/application_test_base.cc",
62 "lib/application_test_main.cc",
63 ] 62 ]
64 } 63 }
64
65 source_set("test_support_standalone") {
66 testonly = true
67 public_deps = [ ":test_support", ]
68 deps = [ "//mojo/public/cpp/environment:standalone", ]
69 sources = [ "lib/application_test_main.cc", ]
viettrungluu 2014/10/31 20:26:46 nit: Probably you should be at least consistent wi
msw 2014/10/31 20:39:54 Done (fixed here and 'test_support' above).
70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698