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

Side by Side Diff: extensions/shell/app_shell.gyp

Issue 468393005: app_shell: Shut down in response to power button. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments 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 | 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 'type': 'executable', 187 'type': 'executable',
188 'dependencies': [ 188 'dependencies': [
189 'app_shell_lib', 189 'app_shell_lib',
190 '<(DEPTH)/base/base.gyp:base', 190 '<(DEPTH)/base/base.gyp:base',
191 '<(DEPTH)/base/base.gyp:test_support_base', 191 '<(DEPTH)/base/base.gyp:test_support_base',
192 '<(DEPTH)/content/content.gyp:content_app_both', 192 '<(DEPTH)/content/content.gyp:content_app_both',
193 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', 193 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content',
194 '<(DEPTH)/extensions/extensions.gyp:extensions_shell_and_test_pak', 194 '<(DEPTH)/extensions/extensions.gyp:extensions_shell_and_test_pak',
195 '<(DEPTH)/extensions/extensions.gyp:extensions_test_support', 195 '<(DEPTH)/extensions/extensions.gyp:extensions_test_support',
196 '<(DEPTH)/testing/gtest.gyp:gtest', 196 '<(DEPTH)/testing/gtest.gyp:gtest',
197 '<(DEPTH)/ui/aura/aura.gyp:aura_test_support',
197 ], 198 ],
198 'sources': [ 199 'sources': [
199 '../test/extensions_unittests_main.cc', 200 '../test/extensions_unittests_main.cc',
201 'browser/shell_desktop_controller_unittest.cc',
200 'browser/shell_nacl_browser_delegate_unittest.cc', 202 'browser/shell_nacl_browser_delegate_unittest.cc',
201 ], 203 ],
202 'conditions': [ 204 'conditions': [
203 ['disable_nacl==1', { 205 ['disable_nacl==1', {
204 'sources!': [ 206 'sources!': [
205 'browser/shell_nacl_browser_delegate_unittest.cc', 207 'browser/shell_nacl_browser_delegate_unittest.cc',
206 ], 208 ],
207 }], 209 }],
210 ['chromeos==1', {
211 'dependencies': [
212 '<(DEPTH)/chromeos/chromeos.gyp:chromeos_test_support_without_gmock' ,
213 ],
214 }],
208 ], 215 ],
209 }, 216 },
210 { 217 {
211 'target_name': 'app_shell_version_header', 218 'target_name': 'app_shell_version_header',
212 'type': 'none', 219 'type': 'none',
213 'direct_dependent_settings': { 220 'direct_dependent_settings': {
214 'include_dirs': [ 221 'include_dirs': [
215 '<(SHARED_INTERMEDIATE_DIR)', 222 '<(SHARED_INTERMEDIATE_DIR)',
216 ], 223 ],
217 }, 224 },
(...skipping 21 matching lines...) Expand all
239 '<@(_outputs)', 246 '<@(_outputs)',
240 ], 247 ],
241 'includes': [ 248 'includes': [
242 '../../build/util/version.gypi', 249 '../../build/util/version.gypi',
243 ], 250 ],
244 }, 251 },
245 ], 252 ],
246 }, 253 },
247 ], # targets 254 ], # targets
248 } 255 }
OLDNEW
« no previous file with comments | « chromeos/dbus/fake_power_manager_client.cc ('k') | extensions/shell/browser/shell_browser_main_parts.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698