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

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

Issue 690093002: app_shell: Initial skeleton of a GCD target device setup API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: C++ skeleton Created 6 years, 1 month 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 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'include_dirs': [ 44 'include_dirs': [
45 '../..', 45 '../..',
46 '<(SHARED_INTERMEDIATE_DIR)', 46 '<(SHARED_INTERMEDIATE_DIR)',
47 '<(SHARED_INTERMEDIATE_DIR)/extensions/shell', 47 '<(SHARED_INTERMEDIATE_DIR)/extensions/shell',
48 ], 48 ],
49 'sources': [ 49 'sources': [
50 'app/shell_main_delegate.cc', 50 'app/shell_main_delegate.cc',
51 'app/shell_main_delegate.h', 51 'app/shell_main_delegate.h',
52 'browser/api/identity/identity_api.cc', 52 'browser/api/identity/identity_api.cc',
53 'browser/api/identity/identity_api.h', 53 'browser/api/identity/identity_api.h',
54 'browser/api/shell_gcd/shell_gcd_api.cc',
55 'browser/api/shell_gcd/shell_gcd_api.h',
54 'browser/default_shell_browser_main_delegate.cc', 56 'browser/default_shell_browser_main_delegate.cc',
55 'browser/default_shell_browser_main_delegate.h', 57 'browser/default_shell_browser_main_delegate.h',
56 'browser/desktop_controller.cc', 58 'browser/desktop_controller.cc',
57 'browser/desktop_controller.h', 59 'browser/desktop_controller.h',
58 'browser/media_capture_util.cc', 60 'browser/media_capture_util.cc',
59 'browser/media_capture_util.h', 61 'browser/media_capture_util.h',
60 'browser/shell_app_delegate.cc', 62 'browser/shell_app_delegate.cc',
61 'browser/shell_app_delegate.h', 63 'browser/shell_app_delegate.h',
62 'browser/shell_app_window_client.cc', 64 'browser/shell_app_window_client.cc',
63 'browser/shell_app_window_client.h', 65 'browser/shell_app_window_client.h',
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 '<(DEPTH)/content/content.gyp:content_app_both', 231 '<(DEPTH)/content/content.gyp:content_app_both',
230 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', 232 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content',
231 '<(DEPTH)/extensions/extensions.gyp:extensions_shell_and_test_pak', 233 '<(DEPTH)/extensions/extensions.gyp:extensions_shell_and_test_pak',
232 '<(DEPTH)/extensions/extensions.gyp:extensions_test_support', 234 '<(DEPTH)/extensions/extensions.gyp:extensions_test_support',
233 '<(DEPTH)/testing/gtest.gyp:gtest', 235 '<(DEPTH)/testing/gtest.gyp:gtest',
234 '<(DEPTH)/ui/aura/aura.gyp:aura_test_support', 236 '<(DEPTH)/ui/aura/aura.gyp:aura_test_support',
235 ], 237 ],
236 'sources': [ 238 'sources': [
237 '../test/extensions_unittests_main.cc', 239 '../test/extensions_unittests_main.cc',
238 'browser/api/identity/identity_api_unittest.cc', 240 'browser/api/identity/identity_api_unittest.cc',
241 'browser/api/shell_gcd/shell_gcd_api_unittest.cc',
239 'browser/shell_audio_controller_chromeos_unittest.cc', 242 'browser/shell_audio_controller_chromeos_unittest.cc',
240 'browser/shell_desktop_controller_unittest.cc', 243 'browser/shell_desktop_controller_unittest.cc',
241 'browser/shell_nacl_browser_delegate_unittest.cc', 244 'browser/shell_nacl_browser_delegate_unittest.cc',
242 'browser/shell_oauth2_token_service_unittest.cc', 245 'browser/shell_oauth2_token_service_unittest.cc',
243 'common/shell_content_client_unittest.cc' 246 'common/shell_content_client_unittest.cc'
244 ], 247 ],
245 'conditions': [ 248 'conditions': [
246 ['disable_nacl==1', { 249 ['disable_nacl==1', {
247 'sources!': [ 250 'sources!': [
248 'browser/shell_nacl_browser_delegate_unittest.cc', 251 'browser/shell_nacl_browser_delegate_unittest.cc',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 '<@(_outputs)', 295 '<@(_outputs)',
293 ], 296 ],
294 'includes': [ 297 'includes': [
295 '../../build/util/version.gypi', 298 '../../build/util/version.gypi',
296 ], 299 ],
297 }, 300 },
298 ], 301 ],
299 }, 302 },
300 ], # targets 303 ], # targets
301 } 304 }
OLDNEW
« no previous file with comments | « no previous file | extensions/shell/browser/api/shell_gcd/shell_gcd_api.h » ('j') | extensions/shell/common/api/shell_gcd.idl » ('J')

Powered by Google App Engine
This is Rietveld 408576698