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

Side by Side Diff: build/common.gypi

Issue 10893042: Switch ChromeOS Chromium to use IJG libjpeg instead of libjpeg_turbo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 519
520 # Enable Skia UI text drawing incrementally on different platforms. 520 # Enable Skia UI text drawing incrementally on different platforms.
521 # http://crbug.com/105550 521 # http://crbug.com/105550
522 # 522 #
523 # On Aura, this allows per-tile painting to be used in the browser 523 # On Aura, this allows per-tile painting to be used in the browser
524 # compositor. 524 # compositor.
525 ['OS!="mac" and OS!="android"', { 525 ['OS!="mac" and OS!="android"', {
526 'use_canvas_skia%': 1, 526 'use_canvas_skia%': 1,
527 }], 527 }],
528 528
529 ['chromeos==1', {
530 # When building for ChromeOS we dont want Chromium to use libjpeg_turb o.
531 'use_libjpeg_turbo%': 0,
532 }],
533
529 ['OS=="android"', { 534 ['OS=="android"', {
530 # When building as part of the Android system, use system libraries 535 # When building as part of the Android system, use system libraries
531 # where possible to reduce ROM size. 536 # where possible to reduce ROM size.
532 'use_system_libjpeg%': '<(android_build_type)', 537 'use_system_libjpeg%': '<(android_build_type)',
533 }], 538 }],
534 ], 539 ],
535 }, 540 },
536 541
537 # Copy conditionally-set variables out one scope. 542 # Copy conditionally-set variables out one scope.
538 'branding%': '<(branding)', 543 'branding%': '<(branding)',
(...skipping 2880 matching lines...) Expand 10 before | Expand all | Expand 10 after
3419 # settings in target dicts. SYMROOT is a special case, because many other 3424 # settings in target dicts. SYMROOT is a special case, because many other
3420 # Xcode variables depend on it, including variables such as 3425 # Xcode variables depend on it, including variables such as
3421 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3426 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3422 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3427 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3423 # files to appear (when present) in the UI as actual files and not red 3428 # files to appear (when present) in the UI as actual files and not red
3424 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3429 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3425 # and therefore SYMROOT, needs to be set at the project level. 3430 # and therefore SYMROOT, needs to be set at the project level.
3426 'SYMROOT': '<(DEPTH)/xcodebuild', 3431 'SYMROOT': '<(DEPTH)/xcodebuild',
3427 }, 3432 },
3428 } 3433 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698