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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 14329020: Implementing uploading of a WebRTC diagnostic log. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review, added url and app session id, rebase Created 7 years, 7 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': { 'enable_wexit_time_destructors': 1, },
(...skipping 3030 matching lines...) Expand 10 before | Expand all | Expand 10 after
3041 '../ui/app_list/app_list.gyp:app_list', 3041 '../ui/app_list/app_list.gyp:app_list',
3042 ] 3042 ]
3043 }], 3043 }],
3044 ['enable_managed_users!=1', { 3044 ['enable_managed_users!=1', {
3045 'sources/': [ 3045 'sources/': [
3046 ['exclude', '^browser/managed_mode/'], 3046 ['exclude', '^browser/managed_mode/'],
3047 ] 3047 ]
3048 }], 3048 }],
3049 ['enable_webrtc==1', { 3049 ['enable_webrtc==1', {
3050 'dependencies': [ 3050 'dependencies': [
3051 '../components/components.gyp:webrtc_log_uploader',
3051 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', 3052 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc',
3052 '../third_party/libjingle/libjingle.gyp:libpeerconnection', 3053 '../third_party/libjingle/libjingle.gyp:libpeerconnection',
3053 ], 3054 ],
3054 }], 3055 }],
3055 ], 3056 ],
3056 'target_conditions': [ 3057 'target_conditions': [
3057 # Need 'target_conditions' to override default filename_rules to include 3058 # Need 'target_conditions' to override default filename_rules to include
3058 # the files on Android. 3059 # the files on Android.
3059 ['OS=="android"', { 3060 ['OS=="android"', {
3060 'sources/': [ 3061 'sources/': [
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
3232 'package_name': 'org/chromium/chrome/browser/ui/toolbar', 3233 'package_name': 'org/chromium/chrome/browser/ui/toolbar',
3233 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'], 3234 'template_deps': ['browser/ui/toolbar/toolbar_model_security_level_l ist.h'],
3234 }, 3235 },
3235 'includes': [ '../build/android/java_cpp_template.gypi' ], 3236 'includes': [ '../build/android/java_cpp_template.gypi' ],
3236 }, 3237 },
3237 ], 3238 ],
3238 }, 3239 },
3239 ], 3240 ],
3240 ], 3241 ],
3241 } 3242 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698