| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1109 ['_type!="static_library"', { | 1109 ['_type!="static_library"', { |
| 1110 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 1110 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
| 1111 }], | 1111 }], |
| 1112 ], # target_conditions | 1112 ], # target_conditions |
| 1113 }, # target_defaults | 1113 }, # target_defaults |
| 1114 }], # OS=="mac" | 1114 }], # OS=="mac" |
| 1115 ['OS=="android"', { | 1115 ['OS=="android"', { |
| 1116 'target_defaults': { | 1116 'target_defaults': { |
| 1117 'defines': [ | 1117 'defines': [ |
| 1118 'ANDROID', | 1118 'ANDROID', |
| 1119 'V8_ANDROID_LOG_STDOUT', | |
| 1120 ], | 1119 ], |
| 1121 'configurations': { | 1120 'configurations': { |
| 1122 'Release': { | 1121 'Release': { |
| 1123 'cflags': [ | 1122 'cflags': [ |
| 1124 '-fomit-frame-pointer', | 1123 '-fomit-frame-pointer', |
| 1125 ], | 1124 ], |
| 1126 }, # Release | 1125 }, # Release |
| 1127 }, # configurations | 1126 }, # configurations |
| 1128 'cflags': [ '-Wno-abi', '-Wall', '-W', '-Wno-unused-parameter'], | 1127 'cflags': [ '-Wno-abi', '-Wall', '-W', '-Wno-unused-parameter'], |
| 1129 'cflags_cc': [ '-Wnon-virtual-dtor', '-fno-rtti', '-fno-exceptions', | 1128 'cflags_cc': [ '-Wnon-virtual-dtor', '-fno-rtti', '-fno-exceptions', |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1505 '-fsanitize=cfi-vcall', | 1504 '-fsanitize=cfi-vcall', |
| 1506 '-fsanitize=cfi-derived-cast', | 1505 '-fsanitize=cfi-derived-cast', |
| 1507 '-fsanitize=cfi-unrelated-cast', | 1506 '-fsanitize=cfi-unrelated-cast', |
| 1508 ], | 1507 ], |
| 1509 }], | 1508 }], |
| 1510 ], | 1509 ], |
| 1511 }, | 1510 }, |
| 1512 }], | 1511 }], |
| 1513 ], | 1512 ], |
| 1514 } | 1513 } |
| OLD | NEW |