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

Side by Side Diff: mojo/environment/BUILD.gn

Issue 710403002: Add Mojo application test support to Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address some comments. 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_base.gyp:mojo_environment_chromium 5 # GYP version: mojo_base.gyp:mojo_environment_chromium
6 source_set("chromium") { 6 source_set("chromium") {
7 output_name = "mojo_environment_chromium" 7 output_name = "mojo_environment_chromium"
8 8
9 sources = [ 9 sources = [
10 "environment.cc", 10 "environment.cc",
(...skipping 10 matching lines...) Expand all
21 # GYP version: mojo_base.gyp:mojo_environment_chromium_impl 21 # GYP version: mojo_base.gyp:mojo_environment_chromium_impl
22 component("chromium_impl") { 22 component("chromium_impl") {
23 output_name = "mojo_environment_impl" 23 output_name = "mojo_environment_impl"
24 visibility = [ "//mojo/*" ] 24 visibility = [ "//mojo/*" ]
25 25
26 sources = [ 26 sources = [
27 "default_async_waiter_impl.cc", 27 "default_async_waiter_impl.cc",
28 "default_async_waiter_impl.h", 28 "default_async_waiter_impl.h",
29 "default_logger_impl.cc", 29 "default_logger_impl.cc",
30 "default_logger_impl.h", 30 "default_logger_impl.h",
31 "default_run_loop_impl.cc",
32 "default_run_loop_impl.h",
31 ] 33 ]
32 34
33 defines = [ 35 defines = [
34 "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION", 36 "MOJO_ENVIRONMENT_IMPL_IMPLEMENTATION",
35 ] 37 ]
36 38
37 deps = [ 39 deps = [
38 "//base", 40 "//base",
39 "//base/third_party/dynamic_annotations", 41 "//base/third_party/dynamic_annotations",
40 "//mojo/common", 42 "//mojo/common",
41 ] 43 ]
42 } 44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698