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

Side by Side Diff: mojo/services/clipboard/BUILD.gn

Issue 562483002: mojo: Create a basic clipboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes to the gn files. Created 6 years, 3 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 | « mojo/services/BUILD.gn ('k') | mojo/services/clipboard/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 # GYP version: mojo/mojo_services.gypi:mojo_clipboard
6 component("clipboard") {
7 deps = [
8 "//base",
9 "//mojo/common",
10 "//mojo/environment:chromium",
11 "//mojo/public/c/system:for_component",
12 "//mojo/services/public/interfaces/clipboard",
13 "//ui/base",
14 ]
15
16 sources = [
17 "clipboard_standalone_impl.cc",
18 "clipboard_standalone_impl.h",
19 "main.cc",
20 ]
21 }
22
23 # GYP version: mojo/mojo_services.gypi:mojo_clipboard_unittests
24 test("mojo_clipboard_unittests") {
25 deps = [
26 "//base",
27 "//base/test:test_support",
28 "//mojo/application",
29 "//mojo/application_manager",
30 "//mojo/common",
31 "//mojo/common/test:run_all_unittests",
32 "//mojo/environment:chromium",
33 "//mojo/services/public/interfaces/clipboard:clipboard",
34 "//mojo/shell:test_support",
35 "//mojo/system",
36 "//testing/gtest",
37 ]
38
39 sources = [
40 "clipboard_standalone_unittest.cc",
41 ]
42 }
OLDNEW
« no previous file with comments | « mojo/services/BUILD.gn ('k') | mojo/services/clipboard/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698