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

Side by Side Diff: chrome/chrome_browser_ui.gypi

Issue 514293003: Run athena on chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments, rebase 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
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 2455 matching lines...) Expand 10 before | Expand all | Expand 10 after
2466 'browser/ui/views/tabs/window_finder_ash.cc', 2466 'browser/ui/views/tabs/window_finder_ash.cc',
2467 ], 2467 ],
2468 # Used when Ash is enabled but not ChromeOS. 2468 # Used when Ash is enabled but not ChromeOS.
2469 'chrome_browser_ui_ash_non_chromeos': [ 2469 'chrome_browser_ui_ash_non_chromeos': [
2470 'browser/ui/ash/chrome_shell_delegate_views.cc', 2470 'browser/ui/ash/chrome_shell_delegate_views.cc',
2471 'browser/ui/ash/multi_user/multi_user_context_menu.cc', 2471 'browser/ui/ash/multi_user/multi_user_context_menu.cc',
2472 'browser/ui/ash/multi_user/multi_user_context_menu.h', 2472 'browser/ui/ash/multi_user/multi_user_context_menu.h',
2473 'browser/ui/ash/session_state_delegate_views.cc', 2473 'browser/ui/ash/session_state_delegate_views.cc',
2474 'browser/ui/ash/session_state_delegate_views.h', 2474 'browser/ui/ash/session_state_delegate_views.h',
2475 ], 2475 ],
2476 # Used when athena is enabled.
2477 'chrome_browser_ui_athena_sources': [
2478 'browser/ui/views/athena/chrome_browser_main_extra_parts_athena.cc',
2479 'browser/ui/views/athena/chrome_browser_main_extra_parts_athena.h',
2480 ],
2476 # Counts desktop Linux and ChromeOS. 2481 # Counts desktop Linux and ChromeOS.
2477 'chrome_browser_ui_linux_sources': [ 2482 'chrome_browser_ui_linux_sources': [
2478 'browser/ui/startup/autolaunch_prompt.cc', 2483 'browser/ui/startup/autolaunch_prompt.cc',
2479 'browser/ui/views/apps/chrome_apps_client_views.cc', 2484 'browser/ui/views/apps/chrome_apps_client_views.cc',
2480 'browser/ui/views/frame/taskbar_decorator.cc', 2485 'browser/ui/views/frame/taskbar_decorator.cc',
2481 'browser/ui/webui/certificate_viewer_ui.cc', 2486 'browser/ui/webui/certificate_viewer_ui.cc',
2482 'browser/ui/webui/certificate_viewer_ui.h', 2487 'browser/ui/webui/certificate_viewer_ui.h',
2483 'browser/ui/webui/certificate_viewer_webui.cc', 2488 'browser/ui/webui/certificate_viewer_webui.cc',
2484 'browser/ui/webui/certificate_viewer_webui.h', 2489 'browser/ui/webui/certificate_viewer_webui.h',
2485 ], 2490 ],
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
2724 '../components/components.gyp:user_manager', 2729 '../components/components.gyp:user_manager',
2725 ], 2730 ],
2726 'conditions': [ 2731 'conditions': [
2727 ['chromeos == 0', { 2732 ['chromeos == 0', {
2728 'sources': [ '<@(chrome_browser_ui_ash_non_chromeos)' ], 2733 'sources': [ '<@(chrome_browser_ui_ash_non_chromeos)' ],
2729 }], 2734 }],
2730 ], 2735 ],
2731 }, { # use_ash==0 2736 }, { # use_ash==0
2732 'sources': [ '<@(chrome_browser_ui_non_ash_sources)' ], 2737 'sources': [ '<@(chrome_browser_ui_non_ash_sources)' ],
2733 }], 2738 }],
2739 ['use_athena==1', {
2740 'sources': [ '<@(chrome_browser_ui_athena_sources)' ],
2741 'dependencies': [
2742 '<(DEPTH)/athena/athena.gyp:athena_lib',
2743 '<(DEPTH)/athena/athena.gyp:athena_chrome_lib',
2744 '<(DEPTH)/athena/athena.gyp:athena_content_lib',
2745 '<(DEPTH)/athena/main/athena_main.gyp:athena_main_lib',
2746 ],
2747 }],
2734 ['toolkit_views==1', { 2748 ['toolkit_views==1', {
2735 'sources': [ '<@(chrome_browser_ui_views_sources)' ], 2749 'sources': [ '<@(chrome_browser_ui_views_sources)' ],
2736 'conditions': [ 2750 'conditions': [
2737 ['chromeos == 0 and OS!="mac"', { 2751 ['chromeos == 0 and OS!="mac"', {
2738 'sources': [ '<@(chrome_browser_ui_views_non_chromeos_sources)' ], 2752 'sources': [ '<@(chrome_browser_ui_views_non_chromeos_sources)' ],
2739 }], 2753 }],
2740 ['use_ash == 1', { 2754 ['use_ash == 1', {
2741 'sources': [ '<@(chrome_browser_ui_ash_views_sources)' ], 2755 'sources': [ '<@(chrome_browser_ui_ash_views_sources)' ],
2742 }], 2756 }],
2743 ['OS!="mac"', { 2757 ['OS!="mac"', {
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
2981 }], 2995 }],
2982 ['OS!="android" and OS!="ios"', { 2996 ['OS!="android" and OS!="ios"', {
2983 'dependencies': [ 2997 'dependencies': [
2984 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 2998 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
2985 ], 2999 ],
2986 }], 3000 }],
2987 ], 3001 ],
2988 }, 3002 },
2989 ], 3003 ],
2990 } 3004 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/athena/chrome_browser_main_extra_parts_athena.cc ('k') | chrome/chrome_repack_chrome_100_percent.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698