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

Side by Side Diff: chrome/chrome_browser_ui.gypi

Issue 702023002: Renamed enable_printing and printing_mode in *.gyp* and .*gn* files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Wed Nov 5 03:20:34 PST 2014 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 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 2667 matching lines...) Expand 10 before | Expand all | Expand 10 after
2678 'defines': [ 2678 'defines': [
2679 '<@(nacl_defines)', 2679 '<@(nacl_defines)',
2680 ], 2680 ],
2681 }, 2681 },
2682 }, { # OS == "ios" 2682 }, { # OS == "ios"
2683 'sources': [ '<@(chrome_browser_ui_ios_sources)' ], 2683 'sources': [ '<@(chrome_browser_ui_ios_sources)' ],
2684 'dependencies': [ 2684 'dependencies': [
2685 '../net/net.gyp:net', 2685 '../net/net.gyp:net',
2686 ], 2686 ],
2687 }], 2687 }],
2688 ['enable_printing!=0', { 2688 ['enable_basic_printing==1 or enable_print_preview==1', {
2689 'dependencies': [ 2689 'dependencies': [
2690 '../printing/printing.gyp:printing', 2690 '../printing/printing.gyp:printing',
2691 ], 2691 ],
2692 }], 2692 }],
2693 ['enable_one_click_signin==1', { 2693 ['enable_one_click_signin==1', {
2694 'sources': [ '<@(chrome_browser_ui_one_click_signin_sources)' ] 2694 'sources': [ '<@(chrome_browser_ui_one_click_signin_sources)' ]
2695 }], 2695 }],
2696 ['enable_task_manager==1', { 2696 ['enable_task_manager==1', {
2697 'sources': [ '<@(chrome_browser_ui_task_manager_sources)' ], 2697 'sources': [ '<@(chrome_browser_ui_task_manager_sources)' ],
2698 }], 2698 }],
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
2836 ], 2836 ],
2837 }], 2837 }],
2838 ['use_nss==1', { 2838 ['use_nss==1', {
2839 'sources': [ '<@(chrome_browser_ui_nss_sources)' ], 2839 'sources': [ '<@(chrome_browser_ui_nss_sources)' ],
2840 }], 2840 }],
2841 ['enable_themes==0', { 2841 ['enable_themes==0', {
2842 'sources!': [ 2842 'sources!': [
2843 'browser/ui/webui/theme_source.cc', 2843 'browser/ui/webui/theme_source.cc',
2844 ], 2844 ],
2845 }], 2845 }],
2846 ['enable_printing==1', { 2846 ['enable_print_preview==1', {
2847 'sources': [ '<@(chrome_browser_ui_print_preview_sources)' ], 2847 'sources': [ '<@(chrome_browser_ui_print_preview_sources)' ],
2848 }], 2848 }],
2849 ['OS=="linux" or OS=="android"', { 2849 ['OS=="linux" or OS=="android"', {
2850 'sources': [ '<@(chrome_browser_ui_android_linux_sources)' ], 2850 'sources': [ '<@(chrome_browser_ui_android_linux_sources)' ],
2851 }], 2851 }],
2852 ['OS=="android"', { 2852 ['OS=="android"', {
2853 'dependencies': [ 2853 'dependencies': [
2854 '../components/components.gyp:web_contents_delegate_android', 2854 '../components/components.gyp:web_contents_delegate_android',
2855 '../third_party/boringssl/boringssl.gyp:boringssl', 2855 '../third_party/boringssl/boringssl.gyp:boringssl',
2856 'chrome_browser_jni_headers', 2856 'chrome_browser_jni_headers',
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
3055 ['OS!="android" and OS!="ios"', { 3055 ['OS!="android" and OS!="ios"', {
3056 'dependencies': [ 3056 'dependencies': [
3057 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 3057 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
3058 ], 3058 ],
3059 'sources': [ '<@(chrome_browser_ui_non_mobile_sources)' ], 3059 'sources': [ '<@(chrome_browser_ui_non_mobile_sources)' ],
3060 }], 3060 }],
3061 ], 3061 ],
3062 }, 3062 },
3063 ], 3063 ],
3064 } 3064 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698