1. 24 6月, 2015 2 次提交
  2. 23 6月, 2015 2 次提交
  3. 17 6月, 2015 3 次提交
  4. 16 6月, 2015 1 次提交
  5. 13 6月, 2015 3 次提交
  6. 12 6月, 2015 2 次提交
    • A
      Wire up Android back button in SkyShell · 2795216f
      Adam Barth 提交于
      The back button now triggers an event of type |back|.
      
      R=eseidel@chromium.org, jackson@chromium.org
      
      Review URL: https://codereview.chromium.org/1176373004.
      2795216f
    • V
      Update from https://crrev.com/333737 · 3c2e575f
      Viet-Trung Luu 提交于
      * Cherrypick crrev.com/333293 (freetype -> freetype-android).
      * Update mojo/go/go.py to use android-16 (NDK API level 16), which is
        4.1 (first Jelly Bean). Chromium dropped support for 14.
      * TODO (separately): also update tools/go/upload.py and upload new
        binaries?
      * Roll android_tools (to match Chromium).
      * Small fixes to match //base changes: base::ObserverList, TraceConfig,
        ThreadTicks, etc.
      * Restore build/ls.py (and add it to the list of files to not roll).
      * Remove the dependency on third_party/instrumented_libraries.
      * Add "enable_topchrome_md = false" to build/config/ui.gni.
      * Add build/config/ui.gni to files_not_to_roll in
        update_from_chromium.py. (We should probably get rid of the use_glib
        variable/argument, and others as well.)
      * Remove mojo/tools/roll/{roll_network_service.py,
        roll_network_service_patches/network_service.patch}. These are for
        rolling from Chromium, whereas we now have/use monet.
      * Roll buildtools (to match Chromium).
      * Modify sanitizer gn/gni files to make it work (patch included).
        (Maybe the patch even works -- I haven't checked.)
      
      TBR=rockot@chromium.org,jamesr@chromium.org,rogulenko@google.com
      
      Review URL: https://codereview.chromium.org/1180693002.
      3c2e575f
  7. 11 6月, 2015 4 次提交
  8. 10 6月, 2015 2 次提交
    • I
      Update the native_viewport interface to allow specification of the surface... · 4b8590c1
      Ian Fischer 提交于
      Update the native_viewport interface to allow specification of the surface configuration, currently only needed for and used by EGL on Android.
      
      This also fixes an issue where eglChooseConfig was
      only being called in InitializeOneOff, which is
      only called once per process.  This CL makes
      choosing the config happen once per GLSurface
      instead, which will ultimately permit apps to
      create multiple native_viewports with different
      surface configurations on the same display.  The
      eglDisplay object is still a global, though.
      
      R=abarth@chromium.org, viettrungluu@chromium.org, jamesr@chromium.org
      
      Review URL: https://codereview.chromium.org/1168993002.
      4b8590c1
    • E
      Make it possible to navigate from a SkyView to a WebView. · 3a5fd0e5
      Eric Seidel 提交于
      This would occur when bringing SkyDemo to the front after
      having viewed a SkyView based demo and then paused
      the SkyActivity (by going to the Android Launcher, etc.)
      
      I also fixed deploy_domokit_site.py to ignore .gitignore files
      found in packages.  We should actually probably ignore these
      when creating the packages in the first place, but
      this check seems valid regardless.  The .gitignore for
      sky/lib/assets was causing the assets not to get pushed
      to the demo site.
      
      R=abarth@chromium.org, johnmccutchan@google.com
      
      Review URL: https://codereview.chromium.org/1163323007.
      3a5fd0e5
  9. 06 6月, 2015 1 次提交
  10. 05 6月, 2015 1 次提交
    • E
      Various fixes in preparation for deploying · a2ae29cb
      Eric Seidel 提交于
      Fixed the mojo deploy script to no longer deploy mojo.
      mojo now uses a more sophisticated CDN, etc.
      
      Fixed old fn.dart to work again. :)  Looks like it was
      victim of a mass rename.
      
      Fixed engine.cc to be able to handle navigating from
      WebView content to SkyView content.  We can't handle
      the other direction yet, but we don't need to.
      /sky_home is written in the .sky system but all of our
      new examples are .dart (and thus SkyView).
      
      R=abarth@chromium.org
      
      Review URL: https://codereview.chromium.org/1165003006
      a2ae29cb
  11. 28 5月, 2015 2 次提交
  12. 27 5月, 2015 1 次提交
  13. 23 5月, 2015 2 次提交
    • E
      Fix android build · 19bb5cb5
      Eric Seidel 提交于
      TBR=ianh@google.com
      
      Review URL: https://codereview.chromium.org/1147153005
      19bb5cb5
    • E
      Make SkyView vs. WebView controlable via url path · 8aa3caf3
      Eric Seidel 提交于
      We're currently in a transition between using main.sky and main.dart
      files as our main() entry point for Sky applications.
      
      This CL makes this runtime controlable by path name.  If it finds
      a .dart in the path name it will use SkyView, otherwise it will
      fall back to the existing WebView codepath.
      
      SkyView does not expose a window object and much of the existing
      Sky Engine is not initialized when main() is run.  Clients should
      be transitioning away from main.sky towards main.dart in the near
      future, however main.dart is probably not ready for general
      consumption at this point.
      
      R=ianh@google.com
      
      Review URL: https://codereview.chromium.org/1152313002
      8aa3caf3
  14. 22 5月, 2015 1 次提交
  15. 20 5月, 2015 5 次提交
  16. 17 5月, 2015 1 次提交
    • A
      public org.domokit.sky.shell.SkyMain.ensureInitialized() · dd745673
      Adam Barth 提交于
      It's useful to be able to call org.domokit.sky.shell.SkyMain.ensureInitialized() when implementing custom Android Activities. This commit makes ensureInitialized() public for this purpose.
      
      Unrelated changes:
      Added curly braces to pass PRESUBMIT check.
      Add Lex Berezhny <lex@damoti.com> to AUTHORS file in order to be able to commit fixes (and pass PRESUBMIT check).
      
      Patch by Lex Berezhny <lex@damoti.com>.
      
      R=abarth@chromium.org
      
      Review URL: https://codereview.chromium.org/1135953004
      dd745673
  17. 06 5月, 2015 1 次提交
    • J
      Update from https://crrev.com/327068 · 3507c90d
      James Robinson 提交于
      This rolls in //base, //build and //sandbox/linux and updates other
      things to match, in particular:
      
      *) Update build_v8.patch
      *) Add junit, mockito and roboelectric to DEPS for android test rules
      *) Update DEPS for grit
      *) Fix up various GN files for os->target_os rename
      *) Fix up a few places that were using //base/float_util to use std::isnan
      *) Fix up a few places using ApiCompatibilityUtil to use Android SDK directly
      
      as well as a few miscellaneous fixes.
      
      Many portions based on ncbray's work in
      https://codereview.chromium.org/1108173002/
      
      R=ncbray@chromium.org
      TBR=ncbray@chromium.org
      
      Review URL: https://codereview.chromium.org/1124763003
      3507c90d
  18. 05 5月, 2015 1 次提交
  19. 17 4月, 2015 1 次提交
  20. 03 4月, 2015 1 次提交
  21. 21 3月, 2015 3 次提交