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

Side by Side Diff: extensions/extensions.gyp

Issue 616253002: Extract NativeAppWindow from src/extensions Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: might fix athena. similarity=33 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
« no previous file with comments | « extensions/common/extension_messages.h ('k') | extensions/renderer/extension_helper.cc » ('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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 # GN version: //extensions/common 11 # GN version: //extensions/common
12 'target_name': 'extensions_common', 12 'target_name': 'extensions_common',
13 'type': 'static_library', 13 'type': 'static_library',
14 'dependencies': [ 14 'dependencies': [
15 # TODO(benwells): figure out what to do with the api target and 15 # TODO(benwells): figure out what to do with the api target and
16 # api resources compiled into the chrome resource bundle. 16 # api resources compiled into the chrome resource bundle.
17 # http://crbug.com/162530 17 # http://crbug.com/162530
18 '../chrome/chrome_resources.gyp:chrome_resources', 18 '../chrome/chrome_resources.gyp:chrome_resources',
19 '../components/components.gyp:crx_file', 19 '../components/components.gyp:crx_file',
20 '../components/components.gyp:native_app_window',
20 '../components/components.gyp:url_matcher', 21 '../components/components.gyp:url_matcher',
21 '../content/content.gyp:content_common', 22 '../content/content.gyp:content_common',
22 '../crypto/crypto.gyp:crypto', 23 '../crypto/crypto.gyp:crypto',
23 '../ipc/ipc.gyp:ipc', 24 '../ipc/ipc.gyp:ipc',
24 '../net/net.gyp:net', 25 '../net/net.gyp:net',
25 '../third_party/re2/re2.gyp:re2', 26 '../third_party/re2/re2.gyp:re2',
26 '../ui/base/ui_base.gyp:ui_base', 27 '../ui/base/ui_base.gyp:ui_base',
27 '../ui/gfx/gfx.gyp:gfx_geometry', 28 '../ui/gfx/gfx.gyp:gfx_geometry',
28 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', 29 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc',
29 '../url/url.gyp:url_lib', 30 '../url/url.gyp:url_lib',
(...skipping 19 matching lines...) Expand all
49 'common/api/sockets/sockets_manifest_handler.h', 50 'common/api/sockets/sockets_manifest_handler.h',
50 'common/api/sockets/sockets_manifest_permission.cc', 51 'common/api/sockets/sockets_manifest_permission.cc',
51 'common/api/sockets/sockets_manifest_permission.h', 52 'common/api/sockets/sockets_manifest_permission.h',
52 'common/common_manifest_handlers.cc', 53 'common/common_manifest_handlers.cc',
53 'common/common_manifest_handlers.h', 54 'common/common_manifest_handlers.h',
54 'common/constants.cc', 55 'common/constants.cc',
55 'common/constants.h', 56 'common/constants.h',
56 'common/csp_validator.cc', 57 'common/csp_validator.cc',
57 'common/csp_validator.h', 58 'common/csp_validator.h',
58 'common/dom_action_types.h', 59 'common/dom_action_types.h',
59 'common/draggable_region.cc',
60 'common/draggable_region.h',
61 'common/error_utils.cc', 60 'common/error_utils.cc',
62 'common/error_utils.h', 61 'common/error_utils.h',
63 'common/event_filter.cc', 62 'common/event_filter.cc',
64 'common/event_filter.h', 63 'common/event_filter.h',
65 'common/event_filtering_info.cc', 64 'common/event_filtering_info.cc',
66 'common/event_filtering_info.h', 65 'common/event_filtering_info.h',
67 'common/event_matcher.cc', 66 'common/event_matcher.cc',
68 'common/event_matcher.h', 67 'common/event_matcher.h',
69 'common/extension.cc', 68 'common/extension.cc',
70 'common/extension.h', 69 'common/extension.h',
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 'browser/app_window/app_window.h', 521 'browser/app_window/app_window.h',
523 'browser/app_window/app_window_contents.cc', 522 'browser/app_window/app_window_contents.cc',
524 'browser/app_window/app_window_contents.h', 523 'browser/app_window/app_window_contents.h',
525 'browser/app_window/app_window_geometry_cache.cc', 524 'browser/app_window/app_window_geometry_cache.cc',
526 'browser/app_window/app_window_geometry_cache.h', 525 'browser/app_window/app_window_geometry_cache.h',
527 'browser/app_window/app_window_registry.cc', 526 'browser/app_window/app_window_registry.cc',
528 'browser/app_window/app_window_registry.h', 527 'browser/app_window/app_window_registry.h',
529 'browser/app_window/app_window_client.cc', 528 'browser/app_window/app_window_client.cc',
530 'browser/app_window/app_window_client.h', 529 'browser/app_window/app_window_client.h',
531 'browser/app_window/native_app_window.h', 530 'browser/app_window/native_app_window.h',
532 'browser/app_window/size_constraints.cc',
533 'browser/app_window/size_constraints.h',
534 'browser/blacklist_state.h', 531 'browser/blacklist_state.h',
535 'browser/blob_holder.cc', 532 'browser/blob_holder.cc',
536 'browser/blob_holder.h', 533 'browser/blob_holder.h',
537 'browser/browser_context_keyed_api_factory.h', 534 'browser/browser_context_keyed_api_factory.h',
538 'browser/browser_context_keyed_service_factories.cc', 535 'browser/browser_context_keyed_service_factories.cc',
539 'browser/browser_context_keyed_service_factories.h', 536 'browser/browser_context_keyed_service_factories.h',
540 'browser/component_extension_resource_manager.h', 537 'browser/component_extension_resource_manager.h',
541 'browser/computed_hashes.cc', 538 'browser/computed_hashes.cc',
542 'browser/computed_hashes.h', 539 'browser/computed_hashes.h',
543 'browser/content_hash_fetcher.cc', 540 'browser/content_hash_fetcher.cc',
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
1172 'conditions': [ 1169 'conditions': [
1173 ['OS=="win" and win_use_allocator_shim==1', { 1170 ['OS=="win" and win_use_allocator_shim==1', {
1174 'dependencies': [ 1171 'dependencies': [
1175 '../base/allocator/allocator.gyp:allocator', 1172 '../base/allocator/allocator.gyp:allocator',
1176 ], 1173 ],
1177 }], 1174 }],
1178 ], 1175 ],
1179 }, 1176 },
1180 ] 1177 ]
1181 } 1178 }
OLDNEW
« no previous file with comments | « extensions/common/extension_messages.h ('k') | extensions/renderer/extension_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698