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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 22408006: Properly set loopback device ID for system audio capture. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': {
11 'enable_wexit_time_destructors': 1,
12 'use_cras%': 0,
DaleCurtis 2013/08/07 18:43:11 Should this be in build/common.gypi instead?
hshi1 2013/08/07 18:50:24 Great suggestion! Yes I agree this should just go
13 },
11 'dependencies': [ 14 'dependencies': [
12 # NOTE: New dependencies should generally be added in the OS!="ios" 15 # NOTE: New dependencies should generally be added in the OS!="ios"
13 # dependencies block below, rather than here. 16 # dependencies block below, rather than here.
14 'browser/search_engines/prepopulated_engines.gyp:prepopulated_engines', 17 'browser/search_engines/prepopulated_engines.gyp:prepopulated_engines',
15 'browser_ui', 18 'browser_ui',
16 'cert_logger_proto', 19 'cert_logger_proto',
17 'chrome_resources.gyp:chrome_extra_resources', 20 'chrome_resources.gyp:chrome_extra_resources',
18 'chrome_resources.gyp:chrome_resources', 21 'chrome_resources.gyp:chrome_resources',
19 'chrome_resources.gyp:chrome_strings', 22 'chrome_resources.gyp:chrome_strings',
20 'chrome_resources.gyp:platform_locale_settings', 23 'chrome_resources.gyp:platform_locale_settings',
(...skipping 2801 matching lines...) Expand 10 before | Expand all | Expand 10 after
2822 ['exclude', '^browser/lifetime/application_lifetime_win.cc'], 2825 ['exclude', '^browser/lifetime/application_lifetime_win.cc'],
2823 ], 2826 ],
2824 'dependencies': [ 2827 'dependencies': [
2825 'launcher_support', 2828 'launcher_support',
2826 '../ui/metro_viewer/metro_viewer.gyp:metro_viewer_messages', 2829 '../ui/metro_viewer/metro_viewer.gyp:metro_viewer_messages',
2827 '../win8/win8.gyp:metro_viewer', 2830 '../win8/win8.gyp:metro_viewer',
2828 ], 2831 ],
2829 }], 2832 }],
2830 ], 2833 ],
2831 }], 2834 }],
2835 ['use_cras==1', {
2836 'defines': [
2837 'USE_CRAS',
2838 ],
2839 }],
2832 ['ui_compositor_image_transport==1', { 2840 ['ui_compositor_image_transport==1', {
2833 'dependencies': [ 2841 'dependencies': [
2834 '../ui/gl/gl.gyp:gl', 2842 '../ui/gl/gl.gyp:gl',
2835 ], 2843 ],
2836 }], 2844 }],
2837 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 2845 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
2838 'link_settings': { 2846 'link_settings': {
2839 'libraries': [ 2847 'libraries': [
2840 '-lXss', 2848 '-lXss',
2841 ], 2849 ],
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
3442 'package_name': 'org/chromium/chrome/browser/ui/toolbar', 3450 'package_name': 'org/chromium/chrome/browser/ui/toolbar',
3443 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'], 3451 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'],
3444 }, 3452 },
3445 'includes': [ '../build/android/java_cpp_template.gypi' ], 3453 'includes': [ '../build/android/java_cpp_template.gypi' ],
3446 }, 3454 },
3447 ], 3455 ],
3448 }, 3456 },
3449 ], 3457 ],
3450 ], 3458 ],
3451 } 3459 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698