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

Side by Side Diff: chrome/chrome_browser_ui_views.gyp

Issue 1412093006: components: Add Exosphere component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on improved shared memory support Created 5 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 version: //chrome/browser/ui/views 11 # GN version: //chrome/browser/ui/views
12 'target_name': 'browser_ui_views', 12 'target_name': 'browser_ui_views',
13 'type': '<(component)', 13 'type': '<(component)',
14 'dependencies': [ 14 'dependencies': [
15 '../base/base.gyp:base', 15 '../base/base.gyp:base',
16 '../skia/skia.gyp:skia', 16 '../skia/skia.gyp:skia',
17 '../ui/base/ui_base.gyp:ui_base', 17 '../ui/base/ui_base.gyp:ui_base',
18 '../ui/events/events.gyp:events', 18 '../ui/events/events.gyp:events',
19 '../ui/gfx/gfx.gyp:gfx', 19 '../ui/gfx/gfx.gyp:gfx',
20 '../ui/gfx/gfx.gyp:gfx_geometry', 20 '../ui/gfx/gfx.gyp:gfx_geometry',
21 '../url/url.gyp:url_lib', 21 '../url/url.gyp:url_lib',
22 ], 22 ],
23 'conditions': [ 23 'conditions': [
24 ['use_ash==1', { 24 ['use_ash==1', {
25 'dependencies': [ 25 'dependencies': [
26 '../ash/ash.gyp:ash', 26 '../ash/ash.gyp:ash',
27 '../components/components.gyp:exo',
28 ],
29 'conditions': [
30 ['OS=="linux"', {
31 'dependencies': [
32 '../components/components.gyp:exo_wayland',
33 ],
34 }],
27 ], 35 ],
28 }], 36 }],
29 ], 37 ],
30 'defines': [ 38 'defines': [
31 'CHROME_VIEWS_IMPLEMENTATION', 39 'CHROME_VIEWS_IMPLEMENTATION',
32 ], 40 ],
33 'sources': [ 41 'sources': [
34 'browser/ui/views/accelerator_table.cc', 42 'browser/ui/views/accelerator_table.cc',
35 'browser/ui/views/accelerator_table.h', 43 'browser/ui/views/accelerator_table.h',
36 'browser/ui/views/browser_dialogs.h', 44 'browser/ui/views/browser_dialogs.h',
37 'browser/ui/views/chrome_views_export.h', 45 'browser/ui/views/chrome_views_export.h',
38 'browser/ui/views/event_utils.cc', 46 'browser/ui/views/event_utils.cc',
39 'browser/ui/views/event_utils.h', 47 'browser/ui/views/event_utils.h',
40 'browser/ui/views/tab_icon_view_model.h', 48 'browser/ui/views/tab_icon_view_model.h',
41 'browser/ui/views/tabs/tab_renderer_data.cc', 49 'browser/ui/views/tabs/tab_renderer_data.cc',
42 'browser/ui/views/tabs/tab_renderer_data.h', 50 'browser/ui/views/tabs/tab_renderer_data.h',
43 'browser/ui/views/tabs/tab_strip_observer.cc', 51 'browser/ui/views/tabs/tab_strip_observer.cc',
44 'browser/ui/views/tabs/tab_strip_observer.h', 52 'browser/ui/views/tabs/tab_strip_observer.h',
45 'browser/ui/views/tabs/tab_strip_types.h', 53 'browser/ui/views/tabs/tab_strip_types.h',
46 ], 54 ],
47 }, 55 },
48 ], 56 ],
49 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698