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

Side by Side Diff: build/common.gypi

Issue 96233002: Add a PDF component extension (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | chrome/browser/browser_resources.grd » ('j') | 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 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after
1682 'conditions': [ 1682 'conditions': [
1683 ['"<(GENERATOR)"=="ninja"', { 1683 ['"<(GENERATOR)"=="ninja"', {
1684 'clang%': 1, 1684 'clang%': 1,
1685 'host_os%': "mac", 1685 'host_os%': "mac",
1686 }] 1686 }]
1687 ], 1687 ],
1688 }], 1688 }],
1689 ['enable_extensions==1', { 1689 ['enable_extensions==1', {
1690 'grit_defines': ['-D', 'enable_extensions'], 1690 'grit_defines': ['-D', 'enable_extensions'],
1691 }], 1691 }],
1692 ['enable_plugins!=0', {
1693
1694 'grit_defines': ['-D', 'enable_plugins'],
1695 }],
1692 ['enable_printing!=0', { 1696 ['enable_printing!=0', {
1693 'grit_defines': ['-D', 'enable_printing'], 1697 'grit_defines': ['-D', 'enable_printing'],
1694 }], 1698 }],
1695 ['enable_themes==1', { 1699 ['enable_themes==1', {
1696 'grit_defines': ['-D', 'enable_themes'], 1700 'grit_defines': ['-D', 'enable_themes'],
1697 }], 1701 }],
1698 ['enable_app_list==1', { 1702 ['enable_app_list==1', {
1699 'grit_defines': ['-D', 'enable_app_list'], 1703 'grit_defines': ['-D', 'enable_app_list'],
1700 }], 1704 }],
1701 ['enable_settings_app==1', { 1705 ['enable_settings_app==1', {
(...skipping 3040 matching lines...) Expand 10 before | Expand all | Expand 10 after
4742 # settings in target dicts. SYMROOT is a special case, because many other 4746 # settings in target dicts. SYMROOT is a special case, because many other
4743 # Xcode variables depend on it, including variables such as 4747 # Xcode variables depend on it, including variables such as
4744 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4748 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4745 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4749 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4746 # files to appear (when present) in the UI as actual files and not red 4750 # files to appear (when present) in the UI as actual files and not red
4747 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4751 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4748 # and therefore SYMROOT, needs to be set at the project level. 4752 # and therefore SYMROOT, needs to be set at the project level.
4749 'SYMROOT': '<(DEPTH)/xcodebuild', 4753 'SYMROOT': '<(DEPTH)/xcodebuild',
4750 }, 4754 },
4751 } 4755 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698