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

Side by Side Diff: apps/apps.gypi

Issue 606953002: Move components/native_app_window to extensions/components/native_app_window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: patchfail/rebase Created 6 years, 2 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
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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 'browser_extensions', 72 'browser_extensions',
73 'common/extensions/api/api.gyp:chrome_api', 73 'common/extensions/api/api.gyp:chrome_api',
74 ], 74 ],
75 'sources/': [ 75 'sources/': [
76 ['exclude', '.*'], 76 ['exclude', '.*'],
77 ], 77 ],
78 } 78 }
79 ], 79 ],
80 ['toolkit_views==1', { 80 ['toolkit_views==1', {
81 'dependencies': [ 81 'dependencies': [
82 '../components/components.gyp:native_app_window', 82 '../extensions/components/extensions_components.gyp:native_app_windo w',
oshima 2014/09/29 18:47:14 this shuld be extensions/browser
tapted 2014/09/30 04:02:46 Done. Of course I need to add back the native_app_
83 '../ui/strings/ui_strings.gyp:ui_strings', 83 '../ui/strings/ui_strings.gyp:ui_strings',
84 '../ui/views/views.gyp:views', 84 '../ui/views/views.gyp:views',
85 ], 85 ],
86 }, { # toolkit_views==0 86 }, { # toolkit_views==0
87 'sources/': [ 87 'sources/': [
88 ['exclude', 'ui/views/'], 88 ['exclude', 'ui/views/'],
89 ], 89 ],
90 }], 90 }],
91 ], 91 ],
92 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 92 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
93 'msvs_disabled_warnings': [ 4267, ], 93 'msvs_disabled_warnings': [ 4267, ],
94 }, 94 },
95 ], # targets 95 ], # targets
96 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698