2
0
mirror of synced 2025-02-20 13:38:20 +00:00

app/debug: move to exp/app/debug.

Change-Id: I97f3585ff155e8c5b95c5bb32cfa793980c81a9a
Reviewed-on: https://go-review.googlesource.com/11821
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
This commit is contained in:
Nigel Tao 2015-07-01 09:15:17 +10:00
parent a5abc28279
commit c7c93d6952
4 changed files with 4 additions and 4 deletions

View File

@ -38,9 +38,9 @@ import (
_ "image/jpeg"
"golang.org/x/mobile/app"
"golang.org/x/mobile/app/debug"
"golang.org/x/mobile/asset"
"golang.org/x/mobile/event"
"golang.org/x/mobile/exp/app/debug"
"golang.org/x/mobile/exp/audio"
"golang.org/x/mobile/exp/sprite"
"golang.org/x/mobile/exp/sprite/clock"

View File

@ -31,8 +31,8 @@ import (
"log"
"golang.org/x/mobile/app"
"golang.org/x/mobile/app/debug"
"golang.org/x/mobile/event"
"golang.org/x/mobile/exp/app/debug"
"golang.org/x/mobile/f32"
"golang.org/x/mobile/geom"
"golang.org/x/mobile/gl"

View File

@ -35,9 +35,9 @@ import (
_ "image/jpeg"
"golang.org/x/mobile/app"
"golang.org/x/mobile/app/debug"
"golang.org/x/mobile/asset"
"golang.org/x/mobile/event"
"golang.org/x/mobile/exp/app/debug"
"golang.org/x/mobile/exp/sprite"
"golang.org/x/mobile/exp/sprite/clock"
"golang.org/x/mobile/exp/sprite/glsprite"

View File

@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.
// Package debug provides GL-based debugging tools for apps.
package debug // import "golang.org/x/mobile/app/debug"
package debug // import "golang.org/x/mobile/exp/app/debug"
import (
"image"