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

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

Issue 303543004: MacViews: views_examples_with_content_exe working! Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add files Created 6 years, 6 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 | Annotate | Revision Log
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 'target_name': 'views_content_client', 10 'target_name': 'views_content_client',
11 'type': '<(component)', 11 'type': '<(component)',
12 'dependencies': [ 12 'dependencies': [
13 '../../base/base.gyp:base', 13 '../../base/base.gyp:base',
14 '../../base/base.gyp:base_i18n', 14 '../../base/base.gyp:base_i18n',
15 '../../content/content.gyp:content', 15 '../../content/content.gyp:content',
16 '../../content/content_shell_and_tests.gyp:content_shell_lib', 16 '../../content/content_shell_and_tests.gyp:content_shell_lib',
17 '../../third_party/icu/icu.gyp:icui18n', 17 '../../third_party/icu/icu.gyp:icui18n',
18 '../../third_party/icu/icu.gyp:icuuc', 18 '../../third_party/icu/icu.gyp:icuuc',
19 '../aura/aura.gyp:aura',
20 '../base/ui_base.gyp:ui_base', 19 '../base/ui_base.gyp:ui_base',
21 '../events/events.gyp:events', 20 '../events/events.gyp:events',
22 '../gfx/gfx.gyp:gfx', 21 '../gfx/gfx.gyp:gfx',
23 '../gfx/gfx.gyp:gfx_geometry', 22 '../gfx/gfx.gyp:gfx_geometry',
24 '../resources/ui_resources.gyp:ui_resources', 23 '../resources/ui_resources.gyp:ui_resources',
25 '../resources/ui_resources.gyp:ui_test_pak', 24 '../resources/ui_resources.gyp:ui_test_pak',
26 '../views/views.gyp:views', 25 '../views/views.gyp:views',
27 '../views/views.gyp:views_test_support', 26 '../views/views.gyp:views_test_support',
28 ], 27 ],
29 'defines': [ 28 'defines': [
30 'VIEWS_CONTENT_CLIENT_IMPLEMENTATION', 29 'VIEWS_CONTENT_CLIENT_IMPLEMENTATION',
31 ], 30 ],
32 'sources': [ 31 'sources': [
33 'views_content_browser_client.cc', 32 'views_content_browser_client.cc',
34 'views_content_browser_client.h', 33 'views_content_browser_client.h',
35 'views_content_client.cc', 34 'views_content_client.cc',
36 'views_content_client.h', 35 'views_content_client.h',
37 'views_content_client_export.h', 36 'views_content_client_export.h',
38 'views_content_client_main_parts.cc', 37 'views_content_client_main_parts.cc',
39 'views_content_client_main_parts.h', 38 'views_content_client_main_parts.h',
39 'views_content_client_main_parts_aura.cc',
40 'views_content_client_main_parts_aura.h',
41 'views_content_client_main_parts_chromeos.cc',
42 'views_content_client_main_parts_desktop_aura.cc',
43 'views_content_client_main_parts_mac.mm',
40 'views_content_main_delegate.cc', 44 'views_content_main_delegate.cc',
41 ], 45 ],
46 'conditions': [
47 ['use_aura==1', {
48 'dependencies': [
49 '../aura/aura.gyp:aura',
50 '../wm/wm.gyp:wm',
51 ],
52 }], # use_aura==1
53 ['chromeos==1', {
54 'sources!': [
55 'views_content_client_main_parts_desktop_aura.cc',
56 ]
57 }], # chromeos==1
58 ],
42 }, # target_name: views_content_client 59 }, # target_name: views_content_client
43 ], 60 ],
44 } 61 }
OLDNEW
« no previous file with comments | « ui/views_content_client/views_content_browser_client.cc ('k') | ui/views_content_client/views_content_client_main_parts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698