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

Side by Side Diff: build/common.gypi

Issue 22870011: chrome.mdns API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 }], 708 }],
709 # Whether Android ARM build uses OpenMAX DL FFT. 709 # Whether Android ARM build uses OpenMAX DL FFT.
710 ['OS=="android" and target_arch=="arm" and android_webview_build==0', { 710 ['OS=="android" and target_arch=="arm" and android_webview_build==0', {
711 # Currently only supported on Android ARM, without webview. 711 # Currently only supported on Android ARM, without webview.
712 # When enabled, this will also enable WebAudio on Android 712 # When enabled, this will also enable WebAudio on Android
713 # ARM. Default is enabled. 713 # ARM. Default is enabled.
714 'use_openmax_dl_fft%': 1, 714 'use_openmax_dl_fft%': 1,
715 }, { 715 }, {
716 'use_openmax_dl_fft%': 0, 716 'use_openmax_dl_fft%': 0,
717 }], 717 }],
718 ['OS=="win" or OS=="linux"', { 718 ['OS=="win" or OS=="linux" or OS=="mac"', {
719 'enable_mdns%' : 1, 719 'enable_mdns%' : 1,
720 }], 720 }],
721 721
722 # Turns on compiler optimizations in V8 in Debug build, except 722 # Turns on compiler optimizations in V8 in Debug build, except
723 # on android_clang, where we're hitting a weird linker error. 723 # on android_clang, where we're hitting a weird linker error.
724 # TODO(dpranke): http://crbug.com/266155 . 724 # TODO(dpranke): http://crbug.com/266155 .
725 ['OS=="android"', { 725 ['OS=="android"', {
726 'v8_optimized_debug': 1, 726 'v8_optimized_debug': 1,
727 }, { 727 }, {
728 'v8_optimized_debug': 2, 728 'v8_optimized_debug': 2,
(...skipping 3991 matching lines...) Expand 10 before | Expand all | Expand 10 after
4720 # settings in target dicts. SYMROOT is a special case, because many other 4720 # settings in target dicts. SYMROOT is a special case, because many other
4721 # Xcode variables depend on it, including variables such as 4721 # Xcode variables depend on it, including variables such as
4722 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4722 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4723 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4723 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4724 # files to appear (when present) in the UI as actual files and not red 4724 # files to appear (when present) in the UI as actual files and not red
4725 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4725 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4726 # and therefore SYMROOT, needs to be set at the project level. 4726 # and therefore SYMROOT, needs to be set at the project level.
4727 'SYMROOT': '<(DEPTH)/xcodebuild', 4727 'SYMROOT': '<(DEPTH)/xcodebuild',
4728 }, 4728 },
4729 } 4729 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/api/dial/dial_api.cc » ('j') | chrome/browser/extensions/api/mdns/mdns_api.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698