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

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: Maybe fix windows and gn builds. 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
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 import("//mojo/system.gni")
6
7 # GYP version: mojo/mojo_services.gypi:mojo_clipboard
8 component("clipboard") {
9 deps = [
10 "//base",
11 "//mojo/common",
12 "//mojo/environment:chromium",
13 "//mojo/services/public/interfaces/clipboard",
14 "//ui/base",
15 ] + mojo_system_for_component
16
17 sources = [
18 "clipboard_standalone_impl.cc",
19 "clipboard_standalone_impl.h",
20 "main.cc",
21 ]
22 }
23
24 # GYP version: mojo/mojo_services.gypi:mojo_clipboard_unittests
25 test("mojo_clipboard_unittests") {
26 deps = [
27 "//base",
28 "//base/test:test_support",
29 "//mojo/application",
30 "//mojo/application_manager",
31 "//mojo/common",
32 "//mojo/common/test:run_all_unittests",
33 "//mojo/environment:chromium",
34 "//mojo/services/public/interfaces/clipboard:clipboard",
35 "//mojo/shell:test_support",
36 "//mojo/system",
37 "//testing/gtest",
38 ]
39
40 sources = [
41 "clipboard_standalone_unittest.cc",
42 ]
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698