Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: BUILD.gn

Issue 2595233003: Revert of Android: Delete rezip in favor of zipalign -p (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | android_webview/tools/apk_merger.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 "//chrome/installer/gcapi", 394 "//chrome/installer/gcapi",
395 "//chrome/tools/build/win/syzygy:chrome_dll_syzygy", 395 "//chrome/tools/build/win/syzygy:chrome_dll_syzygy",
396 ] 396 ]
397 } 397 }
398 398
399 if (is_android) { 399 if (is_android) {
400 deps += [ 400 deps += [
401 "//base:base_junit_tests", 401 "//base:base_junit_tests",
402 "//base/android/linker:chromium_android_linker", 402 "//base/android/linker:chromium_android_linker",
403 "//build/android/gyp/test:hello_world", 403 "//build/android/gyp/test:hello_world",
404 "//build/android/rezip",
404 "//chrome/android/webapk/shell_apk:webapk", 405 "//chrome/android/webapk/shell_apk:webapk",
405 "//components/invalidation/impl:components_invalidation_impl_junit_tests", 406 "//components/invalidation/impl:components_invalidation_impl_junit_tests",
406 "//components/policy/android:components_policy_junit_tests", 407 "//components/policy/android:components_policy_junit_tests",
407 "//content/public/android:content_junit_tests", 408 "//content/public/android:content_junit_tests",
408 "//content/shell/android:content_shell_apk", 409 "//content/shell/android:content_shell_apk",
409 "//media/gpu:video_decode_accelerator_unittest", 410 "//media/gpu:video_decode_accelerator_unittest",
410 "//net/android:net_junit_tests", 411 "//net/android:net_junit_tests",
411 "//testing/android/junit:junit_unit_tests", 412 "//testing/android/junit:junit_unit_tests",
412 "//third_party/android_async_task:android_async_task_java", 413 "//third_party/android_async_task:android_async_task_java",
413 "//third_party/errorprone:chromium_errorprone", 414 "//third_party/errorprone:chromium_errorprone",
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
1091 assert(target_name != "") # Mark as used. 1092 assert(target_name != "") # Mark as used.
1092 sources = invoker.actual_sources 1093 sources = invoker.actual_sources
1093 assert( 1094 assert(
1094 sources == invoker.actual_sources, 1095 sources == invoker.actual_sources,
1095 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") 1096 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283")
1096 } 1097 }
1097 1098
1098 assert_valid_out_dir("_unused") { 1099 assert_valid_out_dir("_unused") {
1099 actual_sources = [ "$root_build_dir/foo" ] 1100 actual_sources = [ "$root_build_dir/foo" ]
1100 } 1101 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/tools/apk_merger.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698