Subversion Repositories DevTools

Rev

Rev 6276 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6276 Rev 6442
Line 42... Line 42...
42
    #
42
    #
43
    #   EXTRA_USES
43
    #   EXTRA_USES
44
    #   An array of other platforms to be 'used' by this platform.
44
    #   An array of other platforms to be 'used' by this platform.
45
    #   This list is not expanded in a PRODUCT as the USERS list is.
45
    #   This list is not expanded in a PRODUCT as the USERS list is.
46
    #
46
    #
47
    #   Intended use: Extend the ANDROID platformm so that it can locate
47
    #   Intended use: Extend the ANDROID platform so that it can locate
48
    #                 Android NDK components
48
    #                 Android NDK components ie:  'ANDROIDARM', 'ANDROIDMIPS', 'ANDROIDX86' and others
49
    #
49
    #
-
 
50
    #   Calculate these based on the ANDROIDNDK tag
-
 
51
    #
-
 
52
    my @NdkPlatforms = PlatformConfig::getTargetsByTag('ANDROIDNDK'); 
-
 
53
    ::Error("Internal: Cannot locate ANDROID NDK targets") unless @NdkPlatforms;
50
    $pInfo->{EXTRA_USES} = ['ANDROIDARM', 'ANDROIDMIPS', 'ANDROIDX86' ];
54
    $pInfo->{EXTRA_USES} =  \@NdkPlatforms;
51
 
55
 
52
}
56
}
53
    
57
    
54
1;
58
1;
55
 
59