1. 18 Jul, 2014 1 commit
  2. 07 Apr, 2014 1 commit
    • Jon Boekenoogen's avatar
      ggrep · cbca56fb
      Jon Boekenoogen authored
      Add ggrep to search Gradle files more easily. Similar
      to jgrep, cgrep, mgrep, etc...
      
      Change-Id: I9f0bc74560c1df4c369216eabdb9e825bcb6fe75
      cbca56fb
  3. 24 Jan, 2014 1 commit
  4. 22 Jan, 2014 1 commit
    • Narayan Kamath's avatar
      Make envsetup.sh set JAVA_HOME correctly for java7. · 9260bba0
      Narayan Kamath authored
      Note that despite the location of this change, this function
      is run only during "lunch" and not during ". build/envsetup.sh"
      
      Also, make it easier to switch back and forth between java6 and 7
      on the same session.
      
      bug: 8992787
      
      Change-Id: I56ec0ba8552b46c04204a8b96b9abc0180f7605f
      9260bba0
  5. 14 Jan, 2014 1 commit
  6. 19 Dec, 2013 1 commit
    • Andrew Boie's avatar
      envsetup.sh: cd to toplevel in get_build_var · 6905e216
      Andrew Boie authored
      
      dumpvar doesn't work right if we're not called from the toplevel;
      due to the way the build system works internally, -C does not
      suffice. This was already done in get_abs_build_var.
      
      Redundant -C calls removed since we're at the toplevel already.
      
      Change-Id: Iaaa48982547d099186922cc3ddc417a82c85e9a5
      Signed-off-by: default avatarAndrew Boie <andrew.p.boie@intel.com>
      6905e216
  7. 07 Oct, 2013 1 commit
  8. 02 Oct, 2013 1 commit
  9. 13 Sep, 2013 1 commit
  10. 10 Sep, 2013 1 commit
    • Andrew Hsieh's avatar
      Add "WITH_STATIC_ANALYZER=1 m/mm/mmm/mma/mmma ..." · 906cb781
      Andrew Hsieh authored
      The new option WITH_STATIC_ANALYZER=1 instructs build system to
      run static analyzer via "clang --analyze" on a successful build.
      If analyzer finds any issue, instruction to open report is displayed.
      See http://clang-analyzer.llvm.org/scan-build.html for details.
      
      WITH_STATIC_ANALYZER trumps WITH_SYNTAX_CHECK if both exist.
      
      Project use lots of GCC extensions (eg. nested function) not supported
      by clang may opt out by adding LOCAL_NO_STATIC_ANALYZER:=true
      
      Change-Id: I9970560560bd52ce5f0fd7129c3488629627c735
      906cb781
  11. 27 Aug, 2013 1 commit
  12. 26 Aug, 2013 1 commit
  13. 19 Aug, 2013 1 commit
  14. 16 Aug, 2013 1 commit
    • Ying Wang's avatar
      Add phony goal GET-INSTALL-PATH · a7deb085
      Ying Wang authored
      It can be used as a goal of mm/mmm.
      It prints out modules' install paths, which can be used by the runtest
      utility.
      
      Change-Id: If113e4c990b672acbacf723104583c0157d43c3b
      a7deb085
  15. 13 Aug, 2013 1 commit
    • Ben Cheng's avatar
      Prepare upcoming GCC 4.8 release. · aac3f816
      Ben Cheng authored
      o Add -Wno-unused-parameter -Wno-unused-but-set-parameter to suppress
        new warnings.
      o Define GCC_COLORS to enable colorful diagnostic messages.
      
      Change-Id: Icbd62300b0e6f39d4e514edec2431a06b4d72421
      (cherry picked from internal commit ccd8e608)
      aac3f816
  16. 31 Jul, 2013 1 commit
    • Daniel Sandler's avatar
      Add --exact flag to `pid` tool; new `qpid` tool. · 47e0a88d
      Daniel Sandler authored
      The new --exact flag for pid does an exact match on the
      process name, rather than grepping anywhere in the ps
      output, which helps target a specific process if its name is
      a substring of another process name. (Nothing else about
      pid's output, including inclusion of the ps header if it
      matches, is affected.)
      
      qpid ("quick pid" or "quiet pid") lists all processes in the
      following simplified format:
      
      	<pid> <procname>
      
      It also helpfully strips off the header line from ps.
      
      With an argument, qpid will search for processes or pids
      matching the argument. With --exact it matches process names
      exactly (as does pid, above).
      
      Change-Id: I28a201df40281a66cb1a2918b7ee3a0b2d7b6ffd
      47e0a88d
  17. 23 Jul, 2013 1 commit
  18. 05 Jul, 2013 1 commit
  19. 24 Jun, 2013 1 commit
  20. 20 May, 2013 1 commit
    • Christopher Ferris's avatar
      Add missing adbOptions in runhat. · 764b4f80
      Christopher Ferris authored
      One of the adb commands in runhat was not using the adbOptions and would
      fail if specifying a single serial device with multiple connected devices.
      
      Change-Id: I804a6fccc51090cdc78dc2af76bbc0a24d843e3d
      764b4f80
  21. 08 May, 2013 1 commit
  22. 07 May, 2013 1 commit
  23. 16 Apr, 2013 1 commit
  24. 29 Mar, 2013 1 commit
  25. 26 Mar, 2013 1 commit
  26. 08 Mar, 2013 6 commits
  27. 19 Feb, 2013 1 commit
  28. 08 Feb, 2013 1 commit
    • Ying Wang's avatar
      mma and mmma · b607f7bd
      Ying Wang authored
      augmented mm/mmm:
      Their usages are the same as mm/mmm.
      They build not only all modules in given path(s), but also their
      dependencies.
      With them, to run mm/mmm you don't need to run a full build first now:
      Just run mma/mmma first.
      Note that mma/mmma need to load all the makefiles in the source tree
      so they are much slower than mm/mmm.
      You should run mma/mmma the first time, and then mm/mmm for
      incremental build.
      
      Bug: 8163814
      Change-Id: I554a97c0a23343b65c50870406225eb0064e0651
      b607f7bd
  29. 04 Feb, 2013 1 commit
  30. 31 Jan, 2013 1 commit
    • Ying Wang's avatar
      Resurrect generic_armv5 · f05c4f75
      Ying Wang authored
      But only for unbundled build.
      Add it to tapas arch options.
      
      Bug: 8108463
      Change-Id: I53cd63c6ab2113fee3992650b561658231ea9921
      f05c4f75
  31. 13 Dec, 2012 1 commit
  32. 11 Dec, 2012 2 commits
  33. 10 Dec, 2012 1 commit
  34. 27 Nov, 2012 1 commit