Skip to content
Snippets Groups Projects
  1. Sep 29, 2017
  2. Sep 28, 2017
  3. Sep 18, 2017
  4. Aug 31, 2017
  5. Jul 12, 2017
  6. Jul 10, 2017
    • Tom Finegan's avatar
      Improve support for AOMAnalyzer in the CMake build. · 84d35995
      Tom Finegan authored
      - Add utility function for appending link flags to targets.
      - Use it to set linker only opts for emscripten inspect target.
      - Update README.md with emscripten instructions.
      - Build everything with -O3 when no build type is specified.
      
      Change-Id: I69a2083369d2880335a8162132f190377a4a85fb
      84d35995
  7. Jun 21, 2017
    • Tom Finegan's avatar
      Make sure Python is present before pulling in gtest. · ff766cd2
      Tom Finegan authored
      The CMake build of gtest requires python. Make sure it's
      on the system, and disable tests when it's not. Also note
      the Python requirement in the prereqs section of README.md.
      
      BUG=aomedia:604
      
      Change-Id: Iafe4891eca121eb57548e14b08477dc3c8a9c9df
      ff766cd2
  8. Jun 20, 2017
    • Tom Finegan's avatar
      Add shared library support to the CMake build. · 84f2d796
      Tom Finegan authored
      This is enabled via:
      $ cmake path/to/aom -DBUILD_SHARED_LIBS=1
      
      Currently supports only Linux and MacOS targets. Symbol visibility
      is handled by exports.cmake and its helpers exports_sources.cmake
      and generate_exports.cmake.
      
      Some sweeping changes were required to properly support shared libs
      and control symbol visibility:
      
      - Object libraries are always linked privately into static
        libraries.
      - Static libraries are always linked privately into eachother
        in the many cases where the CMake build merges multiple library
        targets.
      - aom_dsp.cmake now links all its targets into the aom_dsp static
        library target, and privately links aom_dsp into the aom target.
      - av1.cmake now links all its targets into the aom_av1 static library
        target, and privately links in aom_dsp and aom_scale as well. It
        then privately links aom_av1 into the aom target.
      - The aom_mem, aom_ports, aom_scale, and aom_util targets are now
        static libs that are privately linked into the aom target.
      - In CMakeLists.txt libyuv and libwebm are now privately linked into
        app targets.
      - The ASM and intrinsic library functions in aom_optimization.cmake
        now both require a dependent target argument. This facilitates the
        changes noted above regarding new privately linked static library
        targets for ASM and intrinsics sources.
      
      BUG=aomedia:76,aomedia:556
      
      Change-Id: I4892059880c5de0f479da2e9c21d8ba2fa7390c3
      84f2d796
  9. Jun 13, 2017
    • Tom Finegan's avatar
      Add README.md. · 9e57db29
      Tom Finegan authored
      And mark README as deprecated.
      
      Change-Id: I9b353f70de9261a1877e520928df30b42226c02f
      9e57db29
Loading