diff options
author | agrieve <agrieve@chromium.org> | 2015-11-20 11:53:28 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-20 19:54:12 +0000 |
commit | d7a71c88990b6788ceaf1ec9ee518099709ff3fd (patch) | |
tree | dd1a1e2a0ef6a80b09e20e8efb7c9cdc5eace718 /skia | |
parent | 505f20a95df63e77c8207a7d5a19f5719f3dc3c6 (diff) | |
download | chromium_src-d7a71c88990b6788ceaf1ec9ee518099709ff3fd.zip chromium_src-d7a71c88990b6788ceaf1ec9ee518099709ff3fd.tar.gz chromium_src-d7a71c88990b6788ceaf1ec9ee518099709ff3fd.tar.bz2 |
Run gn --format over all .gn files
The recent formatter alphebetizing change is causing a lot of noise in
code reviews. Figured it'd be worth a clean-up CL.
Exact command I ran:
find . -name "*.gn*" -exec gn format --in-place "{}" \;
TBR=ddorwin@chromium.org
BUG=554928
CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel
Review URL: https://codereview.chromium.org/1464873002
Cr-Commit-Position: refs/heads/master@{#360891}
Diffstat (limited to 'skia')
-rw-r--r-- | skia/BUILD.gn | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/skia/BUILD.gn b/skia/BUILD.gn index e7d41ca..40b38ad 100644 --- a/skia/BUILD.gn +++ b/skia/BUILD.gn @@ -471,9 +471,9 @@ component("skia") { sources += [ "ext/platform_device_linux.cc" ] set_sources_assignment_filter(sources_assignment_filter) deps += [ + "//third_party/android_tools:cpu_features", "//third_party/expat", "//third_party/freetype-android:freetype", - "//third_party/android_tools:cpu_features", ] } @@ -596,11 +596,11 @@ source_set("skia_opts") { if (current_cpu == "x86" || current_cpu == "x64") { sources = gypi_skia_opts.sse2_sources deps += [ + ":skia_opts_avx", + ":skia_opts_avx2", ":skia_opts_sse3", ":skia_opts_sse41", ":skia_opts_sse42", - ":skia_opts_avx", - ":skia_opts_avx2", ] } else if (current_cpu == "arm") { # The assembly uses the frame pointer register (r7 in Thumb/r11 in |