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

Side by Side Diff: chrome/chrome_browser_ui.gypi

Issue 606953002: Move components/native_app_window to extensions/components/native_app_window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: extensions/components version, with fixed apps dep 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
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 'chrome_browser_ui_non_ios_sources': [ 7 'chrome_browser_ui_non_ios_sources': [
8 'browser/ui/accelerator_utils.h', 8 'browser/ui/accelerator_utils.h',
9 'browser/ui/android/android_about_app_info.cc', 9 'browser/ui/android/android_about_app_info.cc',
10 'browser/ui/android/android_about_app_info.h', 10 'browser/ui/android/android_about_app_info.h',
(...skipping 2720 matching lines...) Expand 10 before | Expand all | Expand 10 after
2731 'sources': [ '<@(chrome_browser_ui_views_sources)' ], 2731 'sources': [ '<@(chrome_browser_ui_views_sources)' ],
2732 'conditions': [ 2732 'conditions': [
2733 ['chromeos == 0 and OS!="mac"', { 2733 ['chromeos == 0 and OS!="mac"', {
2734 'sources': [ '<@(chrome_browser_ui_views_non_chromeos_sources)' ], 2734 'sources': [ '<@(chrome_browser_ui_views_non_chromeos_sources)' ],
2735 }], 2735 }],
2736 ['use_ash == 1', { 2736 ['use_ash == 1', {
2737 'sources': [ '<@(chrome_browser_ui_ash_views_sources)' ], 2737 'sources': [ '<@(chrome_browser_ui_ash_views_sources)' ],
2738 }], 2738 }],
2739 ['OS!="mac"', { 2739 ['OS!="mac"', {
2740 'sources': [ '<@(chrome_browser_ui_views_non_mac_sources)' ], 2740 'sources': [ '<@(chrome_browser_ui_views_non_mac_sources)' ],
2741 'dependencies': [ '<(DEPTH)/extensions/components/extensions_compo nents.gyp:native_app_window' ],
James Cook 2014/09/30 22:27:32 nit: I would wrap this, it's kind of long
tapted 2014/10/01 00:01:32 Done.
2741 }], 2742 }],
2742 ], 2743 ],
2743 }], 2744 }],
2744 ['use_aura==1 and chromeos==0 and use_ozone==0 and OS=="linux"', { 2745 ['use_aura==1 and chromeos==0 and use_ozone==0 and OS=="linux"', {
2745 'dependencies': [ 2746 'dependencies': [
2746 # gtk2 is the only component that can interact with gtk2 in our new 2747 # gtk2 is the only component that can interact with gtk2 in our new
2747 # world. 2748 # world.
2748 'browser/ui/libgtk2ui/libgtk2ui.gyp:gtk2ui', 2749 'browser/ui/libgtk2ui/libgtk2ui.gyp:gtk2ui',
2749 '../build/linux/system.gyp:gio', 2750 '../build/linux/system.gyp:gio',
2750 ], 2751 ],
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
2981 }], 2982 }],
2982 ['OS!="android" and OS!="ios"', { 2983 ['OS!="android" and OS!="ios"', {
2983 'dependencies': [ 2984 'dependencies': [
2984 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 2985 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
2985 ], 2986 ],
2986 }], 2987 }],
2987 ], 2988 ],
2988 }, 2989 },
2989 ], 2990 ],
2990 } 2991 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698