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, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
(...skipping 1397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1408 'conditions': [ | 1408 'conditions': [ |
1409 ['android_webview_build == 0 and target_arch != "x64" and \ | 1409 ['android_webview_build == 0 and target_arch != "x64" and \ |
1410 target_arch != "arm64"', { | 1410 target_arch != "arm64"', { |
1411 # Avoid breaking the webview/64-bit build because they | 1411 # Avoid breaking the webview/64-bit build because they |
1412 # don't have <(android_ndk_root)/crazy_linker.gyp. | 1412 # don't have <(android_ndk_root)/crazy_linker.gyp. |
1413 # Note that webview never uses the linker anyway. | 1413 # Note that webview never uses the linker anyway. |
1414 # Note there is no 64-bit support in the linker. | 1414 # Note there is no 64-bit support in the linker. |
1415 'sources': [ | 1415 'sources': [ |
1416 'android/linker/linker_jni.cc', | 1416 'android/linker/linker_jni.cc', |
1417 ], | 1417 ], |
1418 'cflags!': [ | |
Nico
2014/05/27 09:08:00
Maybe add a comment for why this is here.
qsr
2014/05/27 09:11:00
Done.
| |
1419 '-finstrument-functions', | |
1420 ], | |
1418 'dependencies': [ | 1421 'dependencies': [ |
1419 '<(android_ndk_root)/crazy_linker.gyp:crazy_linker', | 1422 '<(android_ndk_root)/crazy_linker.gyp:crazy_linker', |
1420 ], | 1423 ], |
1421 }], | 1424 }], |
1422 ], | 1425 ], |
1423 }, | 1426 }, |
1424 | 1427 |
1425 ], | 1428 ], |
1426 }], | 1429 }], |
1427 ['OS == "android"', { | 1430 ['OS == "android"', { |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1484 'base_unittests.isolate', | 1487 'base_unittests.isolate', |
1485 ], | 1488 ], |
1486 'sources': [ | 1489 'sources': [ |
1487 'base_unittests.isolate', | 1490 'base_unittests.isolate', |
1488 ], | 1491 ], |
1489 }, | 1492 }, |
1490 ], | 1493 ], |
1491 }], | 1494 }], |
1492 ], | 1495 ], |
1493 } | 1496 } |
OLD | NEW |