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

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

Issue 551373005: Enable ash shell and unit tests in GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: non-exported base for windows 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 | « ui/views_content_client/BUILD.gn ('k') | no next file » | 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'targets': [ 8 'targets': [
9 { 9 {
10 # GN version: //ui/views_content_client
10 'target_name': 'views_content_client', 11 'target_name': 'views_content_client',
11 'type': '<(component)', 12 'type': '<(component)',
12 'dependencies': [ 13 'dependencies': [
13 '../../base/base.gyp:base', 14 '../../base/base.gyp:base',
14 '../../base/base.gyp:base_i18n', 15 '../../base/base.gyp:base_i18n',
15 '../../content/content.gyp:content', 16 '../../content/content.gyp:content',
16 '../../content/content_shell_and_tests.gyp:content_shell_lib', 17 '../../content/content_shell_and_tests.gyp:content_shell_lib',
17 '../../third_party/icu/icu.gyp:icui18n', 18 '../../third_party/icu/icu.gyp:icui18n',
18 '../../third_party/icu/icu.gyp:icuuc', 19 '../../third_party/icu/icu.gyp:icuuc',
19 '../base/ui_base.gyp:ui_base', 20 '../base/ui_base.gyp:ui_base',
20 '../events/events.gyp:events', 21 '../events/events.gyp:events',
21 '../gfx/gfx.gyp:gfx', 22 '../gfx/gfx.gyp:gfx',
22 '../gfx/gfx.gyp:gfx_geometry', 23 '../gfx/gfx.gyp:gfx_geometry',
23 '../resources/ui_resources.gyp:ui_resources', 24 '../resources/ui_resources.gyp:ui_resources',
24 '../resources/ui_resources.gyp:ui_test_pak', 25 '../resources/ui_resources.gyp:ui_test_pak',
25 '../views/views.gyp:views', 26 '../views/views.gyp:views',
26 '../views/views.gyp:views_test_support', 27 '../views/views.gyp:views_test_support',
27 ], 28 ],
28 'defines': [ 29 'defines': [
29 'VIEWS_CONTENT_CLIENT_IMPLEMENTATION', 30 'VIEWS_CONTENT_CLIENT_IMPLEMENTATION',
30 ], 31 ],
31 'sources': [ 32 'sources': [
33 # Note: sources list duplicated in GN build.
32 'views_content_browser_client.cc', 34 'views_content_browser_client.cc',
33 'views_content_browser_client.h', 35 'views_content_browser_client.h',
34 'views_content_client.cc', 36 'views_content_client.cc',
35 'views_content_client.h', 37 'views_content_client.h',
36 'views_content_client_export.h', 38 'views_content_client_export.h',
37 'views_content_client_main_parts.cc', 39 'views_content_client_main_parts.cc',
38 'views_content_client_main_parts.h', 40 'views_content_client_main_parts.h',
39 'views_content_client_main_parts_aura.cc', 41 'views_content_client_main_parts_aura.cc',
40 'views_content_client_main_parts_aura.h', 42 'views_content_client_main_parts_aura.h',
41 'views_content_client_main_parts_chromeos.cc', 43 'views_content_client_main_parts_chromeos.cc',
42 'views_content_client_main_parts_desktop_aura.cc', 44 'views_content_client_main_parts_desktop_aura.cc',
43 'views_content_client_main_parts_mac.mm', 45 'views_content_client_main_parts_mac.mm',
44 'views_content_main_delegate.cc', 46 'views_content_main_delegate.cc',
45 ], 47 ],
46 'conditions': [ 48 'conditions': [
47 ['use_aura==1', { 49 ['use_aura==1', {
48 'dependencies': [ 50 'dependencies': [
49 '../aura/aura.gyp:aura', 51 '../aura/aura.gyp:aura',
50 ], 52 ],
51 }], # use_aura==1 53 }], # use_aura==1
52 ['chromeos==1', { 54 ['chromeos==1', {
53 'sources!': [ 55 'sources!': [
54 'views_content_client_main_parts_desktop_aura.cc', 56 'views_content_client_main_parts_desktop_aura.cc',
55 ] 57 ]
56 }], # chromeos==1 58 }], # chromeos==1
57 ], 59 ],
58 }, # target_name: views_content_client 60 }, # target_name: views_content_client
59 ], 61 ],
60 } 62 }
OLDNEW
« no previous file with comments | « ui/views_content_client/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698