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

Side by Side Diff: apps/apps.gypi

Issue 23847004: "Redirecting URLs to Packaged Apps" implementation: revised (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed the comment in app_window_contents.cc Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | apps/launcher.h » ('j') | apps/url_redirector.cc » ('J')
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 'target_name': 'apps', 8 'target_name': 'apps',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 'saved_files_service_factory.cc', 67 'saved_files_service_factory.cc',
68 'saved_files_service_factory.h', 68 'saved_files_service_factory.h',
69 'shell_window.cc', 69 'shell_window.cc',
70 'shell_window.h', 70 'shell_window.h',
71 'shell_window_geometry_cache.cc', 71 'shell_window_geometry_cache.cc',
72 'shell_window_geometry_cache.h', 72 'shell_window_geometry_cache.h',
73 'shell_window_registry.cc', 73 'shell_window_registry.cc',
74 'shell_window_registry.h', 74 'shell_window_registry.h',
75 'switches.cc', 75 'switches.cc',
76 'switches.h', 76 'switches.h',
77 'url_redirector.cc',
78 'url_redirector.h',
77 ], 79 ],
78 'conditions': [ 80 'conditions': [
79 ['chromeos==1', 81 ['chromeos==1',
80 { 82 {
81 'dependencies': [ 83 'dependencies': [
82 'browser_chromeos', 84 'browser_chromeos',
83 ] 85 ]
84 } 86 }
85 ], 87 ],
86 ['enable_extensions==0', 88 ['enable_extensions==0',
87 { 89 {
88 'sources/': [ 90 'sources/': [
89 ['exclude', '^apps/'], 91 ['exclude', '^apps/'],
90 ], 92 ],
91 } 93 }
92 ], 94 ],
93 ], 95 ],
94 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 96 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
95 'msvs_disabled_warnings': [ 4267, ], 97 'msvs_disabled_warnings': [ 4267, ],
96 }, 98 },
97 ], 99 ],
98 } 100 }
OLDNEW
« no previous file with comments | « no previous file | apps/launcher.h » ('j') | apps/url_redirector.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698