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

Side by Side Diff: build/common.gypi

Issue 8649007: Reland "Move a bunch of ChromeOS APIs out of chrome/browser/extensions."" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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/chromeos/extensions/file_browser_event_router.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 'use_titlecase_in_grd_files%': 1, 301 'use_titlecase_in_grd_files%': 1,
302 }], 302 }],
303 303
304 # Enable some hacks to support Flapper only on Chrome OS. 304 # Enable some hacks to support Flapper only on Chrome OS.
305 ['chromeos==1', { 305 ['chromeos==1', {
306 'enable_flapper_hacks%': 1, 306 'enable_flapper_hacks%': 1,
307 }, { 307 }, {
308 'enable_flapper_hacks%': 0, 308 'enable_flapper_hacks%': 0,
309 }], 309 }],
310 310
311 # Enable file manager extension on Chrome OS or Aura. 311 # Enable file manager extension on Chrome OS.
312 ['chromeos==1 or use_aura==1', { 312 ['chromeos==1', {
313 'file_manager_extension%': 1, 313 'file_manager_extension%': 1,
314 }, { 314 }, {
315 'file_manager_extension%': 0, 315 'file_manager_extension%': 0,
316 }], 316 }],
317 317
318 # ... except on Windows even with Aura. 318 # ... except on Windows even with Aura.
James Cook 2011/11/22 22:20:43 Delete this block?
319 ['use_aura==1 and OS=="win"', { 319 ['use_aura==1 and OS=="win"', {
320 'file_manager_extension%': 0, 320 'file_manager_extension%': 0,
321 }], 321 }],
322 322
323 # Enable WebUI TaskManager always on Chrome OS or Aura. 323 # Enable WebUI TaskManager always on Chrome OS or Aura.
324 ['chromeos==1 or use_aura==1', { 324 ['chromeos==1 or use_aura==1', {
325 'webui_task_manager%': 1, 325 'webui_task_manager%': 1,
326 }], 326 }],
327 327
328 ['OS=="android"', { 328 ['OS=="android"', {
(...skipping 2287 matching lines...) Expand 10 before | Expand all | Expand 10 after
2616 # settings in target dicts. SYMROOT is a special case, because many other 2616 # settings in target dicts. SYMROOT is a special case, because many other
2617 # Xcode variables depend on it, including variables such as 2617 # Xcode variables depend on it, including variables such as
2618 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2618 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2619 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2619 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2620 # files to appear (when present) in the UI as actual files and not red 2620 # files to appear (when present) in the UI as actual files and not red
2621 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2621 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2622 # and therefore SYMROOT, needs to be set at the project level. 2622 # and therefore SYMROOT, needs to be set at the project level.
2623 'SYMROOT': '<(DEPTH)/xcodebuild', 2623 'SYMROOT': '<(DEPTH)/xcodebuild',
2624 }, 2624 },
2625 } 2625 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/file_browser_event_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698