| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
| 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. | 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. |
| 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)'
, | 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)'
, |
| 10 }, | 10 }, |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 '../third_party/webrtc/build/common.gypi', | 30 '../third_party/webrtc/build/common.gypi', |
| 31 ], | 31 ], |
| 32 'conditions': [ | 32 'conditions': [ |
| 33 # This conditional looks insane, but without it |rtc_use_h264| is not | 33 # This conditional looks insane, but without it |rtc_use_h264| is not |
| 34 # recognized as defined. Might have something to do with scopes. Moving | 34 # recognized as defined. Might have something to do with scopes. Moving |
| 35 # the inclusion of third_party/webrtc/build/common.gypi to outside of | 35 # the inclusion of third_party/webrtc/build/common.gypi to outside of |
| 36 # 'targets' is not an option, then we get compile errors. | 36 # 'targets' is not an option, then we get compile errors. |
| 37 # TODO(hbos): crbug.com/584219 | 37 # TODO(hbos): crbug.com/584219 |
| 38 ['1==1', { | 38 ['1==1', { |
| 39 'variables': { | 39 'variables': { |
| 40 'buildflag_header_path': 'content/renderer/renderer_features.h', | 40 'buildflag_header_path': 'content/public/renderer/renderer_features.
h', |
| 41 'buildflag_flags': [ | 41 'buildflag_flags': [ |
| 42 'RTC_USE_H264=<(rtc_use_h264)', | 42 'RTC_USE_H264=<(rtc_use_h264)', |
| 43 ], | 43 ], |
| 44 }, | 44 }, |
| 45 }], | 45 }], |
| 46 ], | 46 ], |
| 47 }, | 47 }, |
| 48 ], | 48 ], |
| 49 'conditions': [ | 49 'conditions': [ |
| 50 ['OS != "ios"', { | 50 ['OS != "ios"', { |
| (...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 }, | 677 }, |
| 678 'includes': [ | 678 'includes': [ |
| 679 '../build/android/copy_ex.gypi', | 679 '../build/android/copy_ex.gypi', |
| 680 '../build/android/v8_external_startup_data_arch_suffix.gypi', | 680 '../build/android/v8_external_startup_data_arch_suffix.gypi', |
| 681 ], | 681 ], |
| 682 }, | 682 }, |
| 683 ], | 683 ], |
| 684 }], # OS == "android" | 684 }], # OS == "android" |
| 685 ], | 685 ], |
| 686 } | 686 } |
| OLD | NEW |