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

Side by Side Diff: components/clipboard/BUILD.gn

Issue 1084463003: Start building core_services.mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add OWNERS files for directories. Created 5 years, 8 months 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 | « no previous file | components/clipboard/OWNERS » ('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 import("//third_party/mojo/src/mojo/public/mojo_application.gni") 5 import("//third_party/mojo/src/mojo/public/mojo_application.gni")
6 6
7 mojo_native_application("clipboard") { 7 source_set("lib") {
8 sources = [ 8 sources = [
9 "clipboard_standalone_impl.cc", 9 "clipboard_standalone_impl.cc",
10 "clipboard_standalone_impl.h", 10 "clipboard_standalone_impl.h",
11 ]
12
13 deps = [
14 "//components/clipboard/public/interfaces",
15 ]
16 }
17
18 mojo_native_application("clipboard") {
19 sources = [
11 "main.cc", 20 "main.cc",
12 ] 21 ]
13 22
14 deps = [ 23 deps = [
24 ":lib",
15 "//base", 25 "//base",
16 "//components/clipboard/public/interfaces",
17 "//mojo/application", 26 "//mojo/application",
18 "//mojo/common", 27 "//mojo/common",
19 "//mojo/environment:chromium", 28 "//mojo/environment:chromium",
20 "//third_party/mojo/src/mojo/public/cpp/bindings", 29 "//third_party/mojo/src/mojo/public/cpp/bindings",
21 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", 30 "//third_party/mojo/src/mojo/public/cpp/bindings:callback",
22 ] 31 ]
23 } 32 }
24 33
25 mojo_native_application("apptests") { 34 mojo_native_application("apptests") {
26 output_name = "clipboard_apptests" 35 output_name = "clipboard_apptests"
27 36
28 testonly = true 37 testonly = true
29 38
30 sources = [ 39 sources = [
31 "clipboard_apptest.cc", 40 "clipboard_apptest.cc",
32 ] 41 ]
33 42
34 deps = [ 43 deps = [
35 "//base", 44 "//base",
36 "//components/clipboard/public/interfaces", 45 "//components/clipboard/public/interfaces",
37 "//mojo/application", 46 "//mojo/application",
38 "//mojo/application:test_support", 47 "//mojo/application:test_support",
39 "//mojo/common", 48 "//mojo/common",
40 "//third_party/mojo/src/mojo/public/cpp/bindings", 49 "//third_party/mojo/src/mojo/public/cpp/bindings",
41 ] 50 ]
42 51
43 data_deps = [ ":clipboard($default_toolchain)" ] 52 data_deps = [ ":clipboard($default_toolchain)" ]
44 } 53 }
OLDNEW
« no previous file with comments | « no previous file | components/clipboard/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698