Changeset 66078 in webkit for trunk/JavaScriptCore/wscript


Ignore:
Timestamp:
Aug 25, 2010, 8:40:45 PM (15 years ago)
Author:
[email protected]
Message:

2010-08-25 Kwang Yul Seo <[email protected]>

Reviewed by Kevin Ollivier.

[BREWMP] Add build system
https://bugs.webkit.org/show_bug.cgi?id=44645

Make waf script portable so that we can add more ports.

  • wscript:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wscript

    r65445 r66078  
    3737jscore_excludes.extend(get_excludes(jscore_dir, ['*None.cpp']))
    3838
    39 if building_on_win32:
    40     jscore_excludes += ['MarkStackPosix.cpp', 'ThreadingPthreads.cpp']
    41     sources += ['runtime/MarkStackWin.cpp']
    42 else:
    43     jscore_excludes.append('JSStringRefBSTR.cpp')
    44     jscore_excludes.extend(get_excludes(jscore_dir, ['*Win.cpp']))
     39if build_port == "wx":
     40    if building_on_win32:
     41        jscore_excludes += ['MarkStackPosix.cpp', 'ThreadingPthreads.cpp']
     42        sources += ['runtime/MarkStackWin.cpp']
     43    else:
     44        jscore_excludes.append('JSStringRefBSTR.cpp')
     45        jscore_excludes.extend(get_excludes(jscore_dir, ['*Win.cpp']))
    4546   
    4647def build(bld):
Note: See TracChangeset for help on using the changeset viewer.