OLD | NEW |
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 1486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1497 'ozone_platform_egltest%': 0, | 1497 'ozone_platform_egltest%': 0, |
1498 'ozone_platform_gbm%': 0, | 1498 'ozone_platform_gbm%': 0, |
1499 'ozone_platform_ozonex%': 0, | 1499 'ozone_platform_ozonex%': 0, |
1500 'ozone_platform_test%': 0, | 1500 'ozone_platform_test%': 0, |
1501 | 1501 |
1502 # Whether the browser is non-native (using Views Toolkit) on Mac. | 1502 # Whether the browser is non-native (using Views Toolkit) on Mac. |
1503 'mac_views_browser%': 0, | 1503 'mac_views_browser%': 0, |
1504 | 1504 |
1505 # Experiment: http://crbug.com/426914 | 1505 # Experiment: http://crbug.com/426914 |
1506 'envoy%': 0, | 1506 'envoy%': 0, |
| 1507 |
| 1508 # Experiment to enable mojo based media renderer: http://crbug.com/431776 |
| 1509 'enable_mojo_media_renderer%': 0, |
1507 | 1510 |
1508 'conditions': [ | 1511 'conditions': [ |
1509 ['buildtype=="Official"', { | 1512 ['buildtype=="Official"', { |
1510 # Continue to embed build meta data in Official builds, basically the | 1513 # Continue to embed build meta data in Official builds, basically the |
1511 # time it was built. | 1514 # time it was built. |
1512 # TODO(maruel): This decision should be revisited because having an | 1515 # TODO(maruel): This decision should be revisited because having an |
1513 # official deterministic build has high value too but MSVC toolset can't | 1516 # official deterministic build has high value too but MSVC toolset can't |
1514 # generate anything deterministic with WPO enabled AFAIK. | 1517 # generate anything deterministic with WPO enabled AFAIK. |
1515 'dont_embed_build_metadata%': 0, | 1518 'dont_embed_build_metadata%': 0, |
1516 }], | 1519 }], |
(...skipping 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2655 }], | 2658 }], |
2656 ['enable_viewport==1', { | 2659 ['enable_viewport==1', { |
2657 'defines': ['ENABLE_VIEWPORT'], | 2660 'defines': ['ENABLE_VIEWPORT'], |
2658 }], | 2661 }], |
2659 ['enable_pepper_cdms==1', { | 2662 ['enable_pepper_cdms==1', { |
2660 'defines': ['ENABLE_PEPPER_CDMS'], | 2663 'defines': ['ENABLE_PEPPER_CDMS'], |
2661 }], | 2664 }], |
2662 ['enable_browser_cdms==1', { | 2665 ['enable_browser_cdms==1', { |
2663 'defines': ['ENABLE_BROWSER_CDMS'], | 2666 'defines': ['ENABLE_BROWSER_CDMS'], |
2664 }], | 2667 }], |
| 2668 ['enable_mojo_media_renderer==1', { |
| 2669 'defines': ['ENABLE_MOJO_MEDIA_RENDERER'], |
| 2670 }], |
2665 ['configuration_policy==1', { | 2671 ['configuration_policy==1', { |
2666 'defines': ['ENABLE_CONFIGURATION_POLICY'], | 2672 'defines': ['ENABLE_CONFIGURATION_POLICY'], |
2667 }], | 2673 }], |
2668 ['notifications==1', { | 2674 ['notifications==1', { |
2669 'defines': ['ENABLE_NOTIFICATIONS'], | 2675 'defines': ['ENABLE_NOTIFICATIONS'], |
2670 }], | 2676 }], |
2671 ['enable_hidpi==1', { | 2677 ['enable_hidpi==1', { |
2672 'defines': ['ENABLE_HIDPI=1'], | 2678 'defines': ['ENABLE_HIDPI=1'], |
2673 }], | 2679 }], |
2674 ['native_discardable_memory==1', { | 2680 ['native_discardable_memory==1', { |
(...skipping 3167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5842 # settings in target dicts. SYMROOT is a special case, because many other | 5848 # settings in target dicts. SYMROOT is a special case, because many other |
5843 # Xcode variables depend on it, including variables such as | 5849 # Xcode variables depend on it, including variables such as |
5844 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5850 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5845 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5851 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5846 # files to appear (when present) in the UI as actual files and not red | 5852 # files to appear (when present) in the UI as actual files and not red |
5847 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5853 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5848 # and therefore SYMROOT, needs to be set at the project level. | 5854 # and therefore SYMROOT, needs to be set at the project level. |
5849 'SYMROOT': '<(DEPTH)/xcodebuild', | 5855 'SYMROOT': '<(DEPTH)/xcodebuild', |
5850 }, | 5856 }, |
5851 } | 5857 } |
OLD | NEW |