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

Side by Side Diff: apps/apps.gypi

Issue 576863003: Componentize NativeAppWindowViews (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « apps/BUILD.gn ('k') | apps/ui/views/native_app_window_views.h » ('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 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 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //apps 8 # GN version: //apps
9 'target_name': 'apps', 9 'target_name': 'apps',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'launcher.h', 46 'launcher.h',
47 'metrics_names.h', 47 'metrics_names.h',
48 'saved_files_service.cc', 48 'saved_files_service.cc',
49 'saved_files_service.h', 49 'saved_files_service.h',
50 'saved_files_service_factory.cc', 50 'saved_files_service_factory.cc',
51 'saved_files_service_factory.h', 51 'saved_files_service_factory.h',
52 'switches.cc', 52 'switches.cc',
53 'switches.h', 53 'switches.h',
54 'ui/views/app_window_frame_view.cc', 54 'ui/views/app_window_frame_view.cc',
55 'ui/views/app_window_frame_view.h', 55 'ui/views/app_window_frame_view.h',
56 'ui/views/native_app_window_views.cc',
57 'ui/views/native_app_window_views.h',
58 ], 56 ],
59 'conditions': [ 57 'conditions': [
60 ['chromeos==1', 58 ['chromeos==1',
61 { 59 {
62 'dependencies': [ 60 'dependencies': [
63 'browser_chromeos', 61 'browser_chromeos',
64 ] 62 ]
65 } 63 }
66 ], 64 ],
67 ['enable_extensions==0', 65 ['enable_extensions==0',
68 { 66 {
69 'dependencies!': [ 67 'dependencies!': [
70 'browser_extensions', 68 'browser_extensions',
71 ], 69 ],
72 'sources/': [ 70 'sources/': [
73 ['exclude', '.*'], 71 ['exclude', '.*'],
74 ], 72 ],
75 } 73 }
76 ], 74 ],
77 ['toolkit_views==1', { 75 ['toolkit_views==1', {
78 'dependencies': [ 76 'dependencies': [
77 '../components/components.gyp:native_app_window',
79 '../ui/strings/ui_strings.gyp:ui_strings', 78 '../ui/strings/ui_strings.gyp:ui_strings',
80 '../ui/views/views.gyp:views', 79 '../ui/views/views.gyp:views',
81 ], 80 ],
82 }, { # toolkit_views==0 81 }, { # toolkit_views==0
83 'sources/': [ 82 'sources/': [
84 ['exclude', 'ui/views/'], 83 ['exclude', 'ui/views/'],
85 ], 84 ],
86 }], 85 }],
87 ], 86 ],
88 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 87 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
89 'msvs_disabled_warnings': [ 4267, ], 88 'msvs_disabled_warnings': [ 4267, ],
90 }, 89 },
91 ], # targets 90 ], # targets
92 } 91 }
OLDNEW
« no previous file with comments | « apps/BUILD.gn ('k') | apps/ui/views/native_app_window_views.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698