Edit

kc3-lang/angle/DEPS

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2015-03-17 11:25:27
    Hash : 3cd438d1
    Message : Add dEQP tests. We integrate dEQP as a console application and a shared library which runs all of the test logic. Using a shared library lets us compile dEQP with all the specific compiler options it needs, without conflicting with the compile settings in ANGLE proper. Currently we only support Windows D3D11, ES 2 and 3. We can add other targets in the future. We also have a few bugs preventing us from running the test suite in full. We run into infinite loop problems in some shader tests, and have crashes or UNIMPLEMENTED in others. BUG=angleproject:901 Change-Id: Ib6fe66041a6fe547eb2cba497c52de7fd080d667 Reviewed-on: https://chromium-review.googlesource.com/238084 Reviewed-by: Kenneth Russell <kbr@chromium.org> Reviewed-by: Olli Etuaho <oetuaho@nvidia.com> Tested-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Geoff Lang <geofflang@chromium.org>

  • DEPS
  • deps = {
      "third_party/gyp":
          "http://gyp.googlecode.com/svn/trunk@1987",
    
      # TODO(kbr): figure out how to better stay in sync with Chromium's
      # versions of googletest and googlemock.
      "src/tests/third_party/googletest":
          "http://googletest.googlecode.com/svn/trunk@629",
    
      "src/tests/third_party/googlemock":
          "http://googlemock.googlecode.com/svn/trunk@410",
    
      "src/tests/third_party/deqp":
          "https://android.googlesource.com/platform/external/deqp@c7661bcd3bcec04b1abf6c3b290c4150db565604",
    
      "src/tests/third_party/libpng":
          "https://android.googlesource.com/platform/external/libpng@094e181e79a3d6c23fd005679025058b7df1ad6c",
    
      "src/tests/third_party/zlib":
          "https://chromium.googlesource.com/chromium/src/third_party/zlib@afd8c4593c010c045902f6c0501718f1823064a3",
    }
    
    hooks = [
      {
        # A change to a .gyp, .gypi, or to GYP itself should run the generator.
        "pattern": ".",
        "action": ["python", "build/gyp_angle"],
      },
    ]