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

Side by Side Diff: ui/arc/arc.gyp

Issue 2066853002: arc: Show custom notification via notification surface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@notification-exo
Patch Set: rebase Created 4 years, 5 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 | « ui/arc/BUILD.gn ('k') | ui/arc/notification/DEPS » ('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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 # GN: //ui/arc:arc 11 # GN: //ui/arc:arc
12 'target_name': 'arc', 12 'target_name': 'arc',
13 'type': 'static_library', 13 'type': 'static_library',
14 'include_dirs': [ 14 'include_dirs': [
15 '../..', 15 '../..',
16 ], 16 ],
17 'dependencies': [ 17 'dependencies': [
18 '../gfx/gfx.gyp:gfx_geometry', 18 '../gfx/gfx.gyp:gfx_geometry',
19 '../message_center/message_center.gyp:message_center', 19 '../message_center/message_center.gyp:message_center',
20 '../../base/base.gyp:base', 20 '../../base/base.gyp:base',
21 '../../url/url.gyp:url_lib', 21 '../../url/url.gyp:url_lib',
22 '../../skia/skia.gyp:skia', 22 '../../skia/skia.gyp:skia',
23 '../../components/components.gyp:arc_mojo_bindings', 23 '../../components/components.gyp:arc_mojo_bindings',
24 '../../components/components.gyp:signin_core_account_id', 24 '../../components/components.gyp:signin_core_account_id',
25 ], 25 ],
26 'sources': [ 26 'sources': [
27 'notification/arc_custom_notification_view.cc',
28 'notification/arc_custom_notification_view.h',
29 'notification/arc_custom_notification_item.cc',
30 'notification/arc_custom_notification_item.h',
31 'notification/arc_notification_item.cc',
32 'notification/arc_notification_item.h',
27 'notification/arc_notification_manager.cc', 33 'notification/arc_notification_manager.cc',
28 'notification/arc_notification_manager.h', 34 'notification/arc_notification_manager.h',
29 'notification/arc_notification_item.cc', 35 'notification/arc_notification_surface_manager.cc',
30 'notification/arc_notification_item.h', 36 'notification/arc_notification_surface_manager.h',
31 ], 37 ],
32 }, 38 },
33 { 39 {
34 # GN: //ui/arc:ui_arc_unittests 40 # GN: //ui/arc:ui_arc_unittests
35 'target_name': 'ui_arc_unittests', 41 'target_name': 'ui_arc_unittests',
36 'type': '<(gtest_target_type)', 42 'type': '<(gtest_target_type)',
37 'include_dirs': [ 43 'include_dirs': [
38 '../..', 44 '../..',
39 ], 45 ],
40 'dependencies': [ 46 'dependencies': [
41 '../../base/base.gyp:base', 47 '../../base/base.gyp:base',
42 '../../base/base.gyp:test_support_base', 48 '../../base/base.gyp:test_support_base',
43 '../../components/components.gyp:arc_test_support', 49 '../../components/components.gyp:arc_test_support',
44 '../../mojo/mojo_edk.gyp:mojo_system_impl', 50 '../../mojo/mojo_edk.gyp:mojo_system_impl',
45 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', 51 '../../mojo/mojo_public.gyp:mojo_cpp_bindings',
46 '../../testing/gtest.gyp:gtest', 52 '../../testing/gtest.gyp:gtest',
47 '../message_center/message_center.gyp:message_center_test_support', 53 '../message_center/message_center.gyp:message_center_test_support',
48 'arc', 54 'arc',
49 ], 55 ],
50 'sources': [ 56 'sources': [
51 'notification/arc_notification_manager_unittest.cc', 57 'notification/arc_notification_manager_unittest.cc',
52 'test/run_all_unittests.cc', 58 'test/run_all_unittests.cc',
53 ], 59 ],
54 }, 60 },
55 ], 61 ],
56 } 62 }
OLDNEW
« no previous file with comments | « ui/arc/BUILD.gn ('k') | ui/arc/notification/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698