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

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

Issue 698883005: Update mojo sdk to rev cfc99316100efdfa7d53d83f9e07f1d4d3765c21 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « mojo/public/c/system/tests/BUILD.gn ('k') | mojo/public/cpp/application/application_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 30 matching lines...) Expand all
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") {
50 testonly = true 50 testonly = true
51 sources = [
52 "application_test_base.h",
53 "lib/application_test_base.cc",
54 ]
55
51 deps = [ 56 deps = [
52 ":application", 57 ":application",
53 "//mojo/public/cpp/bindings", 58 "//mojo/public/cpp/bindings",
54 "//mojo/public/cpp/environment", 59 "//mojo/public/cpp/environment",
55 "//mojo/public/cpp/system", 60 "//mojo/public/cpp/system",
56 "//testing/gtest", 61 "//testing/gtest",
57 ] 62 ]
63 }
58 64
59 sources = [ 65 source_set("test_support_standalone") {
60 "application_test_base.h", 66 testonly = true
61 "lib/application_test_base.cc", 67 sources = [ "lib/application_test_main.cc", ]
62 "lib/application_test_main.cc", 68 public_deps = [ ":test_support", ]
69 deps = [
70 "//mojo/public/cpp/environment:standalone",
71 "//mojo/public/cpp/application",
72 "//mojo/public/cpp/system",
63 ] 73 ]
64 } 74 }
OLDNEW
« no previous file with comments | « mojo/public/c/system/tests/BUILD.gn ('k') | mojo/public/cpp/application/application_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698