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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 576863003: Componentize NativeAppWindowViews (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « chrome/browser/ui/views/apps/chrome_native_app_window_views.h ('k') | components/BUILD.gn » ('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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 2785 matching lines...) Expand 10 before | Expand all | Expand 10 after
2796 '../components/components.gyp:feedback_component', 2796 '../components/components.gyp:feedback_component',
2797 '../components/components.gyp:gcm_driver', 2797 '../components/components.gyp:gcm_driver',
2798 '../components/components.gyp:google_core_browser', 2798 '../components/components.gyp:google_core_browser',
2799 '../components/components.gyp:history_core_browser', 2799 '../components/components.gyp:history_core_browser',
2800 '../components/components.gyp:history_core_common', 2800 '../components/components.gyp:history_core_common',
2801 '../components/components.gyp:infobars_core', 2801 '../components/components.gyp:infobars_core',
2802 '../components/components.gyp:invalidation', 2802 '../components/components.gyp:invalidation',
2803 '../components/components.gyp:metrics', 2803 '../components/components.gyp:metrics',
2804 '../components/components.gyp:metrics_gpu', 2804 '../components/components.gyp:metrics_gpu',
2805 '../components/components.gyp:metrics_net', 2805 '../components/components.gyp:metrics_net',
2806 '../components/components.gyp:native_app_window',
2806 '../components/components.gyp:navigation_metrics', 2807 '../components/components.gyp:navigation_metrics',
2807 '../components/components.gyp:network_time', 2808 '../components/components.gyp:network_time',
2808 '../components/components.gyp:omaha_query_params', 2809 '../components/components.gyp:omaha_query_params',
2809 '../components/components.gyp:omnibox', 2810 '../components/components.gyp:omnibox',
2810 '../components/components.gyp:os_crypt', 2811 '../components/components.gyp:os_crypt',
2811 '../components/components.gyp:password_manager_core_browser', 2812 '../components/components.gyp:password_manager_core_browser',
2812 '../components/components.gyp:password_manager_core_common', 2813 '../components/components.gyp:password_manager_core_common',
2813 '../components/components.gyp:policy_component', 2814 '../components/components.gyp:policy_component',
2814 '../components/components.gyp:precache_core', 2815 '../components/components.gyp:precache_core',
2815 '../components/components.gyp:query_parser', 2816 '../components/components.gyp:query_parser',
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
2990 'app_shim', 2991 'app_shim',
2991 ], 2992 ],
2992 'sources': [ '<@(chrome_browser_mac_sources)' ] 2993 'sources': [ '<@(chrome_browser_mac_sources)' ]
2993 }], 2994 }],
2994 ['chromeos==1 or OS=="ios"', { 2995 ['chromeos==1 or OS=="ios"', {
2995 'sources!': [ 2996 'sources!': [
2996 'browser/metrics/signin_status_metrics_provider.cc', 2997 'browser/metrics/signin_status_metrics_provider.cc',
2997 'browser/metrics/signin_status_metrics_provider.h', 2998 'browser/metrics/signin_status_metrics_provider.h',
2998 ], 2999 ],
2999 }], 3000 }],
3001 ['toolkit_views==1', {
3002 'dependencies': [
3003 '../components/components.gyp:native_app_window',
3004 ],
3005 }],
3000 ['enable_extensions==1', { 3006 ['enable_extensions==1', {
3001 'dependencies': [ 3007 'dependencies': [
3002 'browser_extensions', 3008 'browser_extensions',
3003 'sync_file_system_drive_proto', 3009 'sync_file_system_drive_proto',
3004 ], 3010 ],
3005 'sources': [ '<@(chrome_browser_extensions_sources)' ], 3011 'sources': [ '<@(chrome_browser_extensions_sources)' ],
3006 }], 3012 }],
3007 ['enable_background==1', { 3013 ['enable_background==1', {
3008 'sources': [ '<@(chrome_browser_background_sources)' ], 3014 'sources': [ '<@(chrome_browser_background_sources)' ],
3009 'conditions': [ 3015 'conditions': [
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
3556 'variables': { 3562 'variables': {
3557 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3563 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3558 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3564 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3559 }, 3565 },
3560 'includes': [ '../build/protoc.gypi' ] 3566 'includes': [ '../build/protoc.gypi' ]
3561 }, 3567 },
3562 ], 3568 ],
3563 },], 3569 },],
3564 ], 3570 ],
3565 } 3571 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/apps/chrome_native_app_window_views.h ('k') | components/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698