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

Side by Side Diff: build/common.gypi

Issue 854713003: More old files deletion. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix tryjobs? Created 5 years, 11 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
« no previous file with comments | « base/test/test_suite.cc ('k') | build/config/BUILD.gn » ('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 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after
1457 1457
1458 # IPC fuzzer is disabled by default. 1458 # IPC fuzzer is disabled by default.
1459 'enable_ipc_fuzzer%': 0, 1459 'enable_ipc_fuzzer%': 0,
1460 1460
1461 # Force disable libstdc++ debug mode. 1461 # Force disable libstdc++ debug mode.
1462 'disable_glibcxx_debug%': 0, 1462 'disable_glibcxx_debug%': 0,
1463 1463
1464 # Set to 1 to compile with MSE support for MPEG2 TS 1464 # Set to 1 to compile with MSE support for MPEG2 TS
1465 'enable_mpeg2ts_stream_parser%': 0, 1465 'enable_mpeg2ts_stream_parser%': 0,
1466 1466
1467 # Support ChromeOS touchpad gestures with ozone.
1468 'use_evdev_gestures%': 0,
1469
1470 # Default ozone platform (if no --ozone-platform flag). 1467 # Default ozone platform (if no --ozone-platform flag).
1471 'ozone_platform%': "", 1468 'ozone_platform%': "",
1472 1469
1473 # Ozone platforms to include in the build. 1470 # Ozone platforms to include in the build.
1474 'ozone_platform_caca%': 0, 1471 'ozone_platform_caca%': 0,
1475 'ozone_platform_dri%': 0, 1472 'ozone_platform_dri%': 0,
1476 'ozone_platform_egltest%': 0, 1473 'ozone_platform_egltest%': 0,
1477 'ozone_platform_gbm%': 0, 1474 'ozone_platform_gbm%': 0,
1478 'ozone_platform_ozonex%': 0, 1475 'ozone_platform_ozonex%': 0,
1479 'ozone_platform_test%': 0, 1476 'ozone_platform_test%': 0,
(...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after
2578 }], 2575 }],
2579 ['enable_rlz==1', { 2576 ['enable_rlz==1', {
2580 'defines': ['ENABLE_RLZ'], 2577 'defines': ['ENABLE_RLZ'],
2581 }], 2578 }],
2582 ['component=="shared_library"', { 2579 ['component=="shared_library"', {
2583 'defines': ['COMPONENT_BUILD'], 2580 'defines': ['COMPONENT_BUILD'],
2584 }], 2581 }],
2585 ['ui_compositor_image_transport==1', { 2582 ['ui_compositor_image_transport==1', {
2586 'defines': ['UI_COMPOSITOR_IMAGE_TRANSPORT'], 2583 'defines': ['UI_COMPOSITOR_IMAGE_TRANSPORT'],
2587 }], 2584 }],
2588 ['use_aura==1', {
2589 'defines': ['USE_AURA=1'],
2590 }],
2591 ['use_ash==1', { 2585 ['use_ash==1', {
2592 'defines': ['USE_ASH=1'], 2586 'defines': ['USE_ASH=1'],
2593 }], 2587 }],
2594 ['use_pango==1', { 2588 ['use_pango==1', {
2595 'defines': ['USE_PANGO=1'], 2589 'defines': ['USE_PANGO=1'],
2596 }], 2590 }],
2597 ['use_cairo==1', { 2591 ['use_cairo==1', {
2598 'defines': ['USE_CAIRO=1'], 2592 'defines': ['USE_CAIRO=1'],
2599 }], 2593 }],
2600 ['use_cras==1', { 2594 ['use_cras==1', {
(...skipping 3230 matching lines...) Expand 10 before | Expand all | Expand 10 after
5831 # settings in target dicts. SYMROOT is a special case, because many other 5825 # settings in target dicts. SYMROOT is a special case, because many other
5832 # Xcode variables depend on it, including variables such as 5826 # Xcode variables depend on it, including variables such as
5833 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5827 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5834 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5828 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5835 # files to appear (when present) in the UI as actual files and not red 5829 # files to appear (when present) in the UI as actual files and not red
5836 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5830 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5837 # and therefore SYMROOT, needs to be set at the project level. 5831 # and therefore SYMROOT, needs to be set at the project level.
5838 'SYMROOT': '<(DEPTH)/xcodebuild', 5832 'SYMROOT': '<(DEPTH)/xcodebuild',
5839 }, 5833 },
5840 } 5834 }
OLDNEW
« no previous file with comments | « base/test/test_suite.cc ('k') | build/config/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698