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

Side by Side Diff: blimp/client/BUILD.gn

Issue 2082453003: 🎅 Use GN's dependency info for native libraries in write_build_config.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix osmesa on non-android Created 4 years, 6 months 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 "app/user_agent.cc", 503 "app/user_agent.cc",
504 "app/user_agent.h", 504 "app/user_agent.h",
505 ] 505 ]
506 506
507 libs = [ "android" ] 507 libs = [ "android" ]
508 } 508 }
509 509
510 android_apk("blimp_apk") { 510 android_apk("blimp_apk") {
511 deps = [ 511 deps = [
512 ":blimp_apk_manifest", 512 ":blimp_apk_manifest",
513 ":blimp_client_android",
514 ":blimp_java", 513 ":blimp_java",
515 "//base:base_java", 514 "//base:base_java",
516 "//components/safe_json/android:safe_json_java", 515 "//components/safe_json/android:safe_json_java",
517 "//net/android:net_java", 516 "//net/android:net_java",
518 ] 517 ]
519 apk_name = "Blimp" 518 apk_name = "Blimp"
520 android_manifest = blimp_apk_manifest 519 android_manifest = blimp_apk_manifest
521 native_libs = [ "libblimp_client_android.so" ] 520 shared_libraries = [ ":blimp_client_android" ]
522 } 521 }
523 522
524 instrumentation_test_apk("blimp_test_apk") { 523 instrumentation_test_apk("blimp_test_apk") {
525 apk_name = "BlimpTest" 524 apk_name = "BlimpTest"
526 apk_under_test = ":blimp_apk" 525 apk_under_test = ":blimp_apk"
527 android_manifest = blimp_test_apk_manifest 526 android_manifest = blimp_test_apk_manifest
528 deps = [ 527 deps = [
529 ":blimp_test_apk_manifest", 528 ":blimp_test_apk_manifest",
530 ":blimp_test_java", 529 ":blimp_test_java",
531 ] 530 ]
532 } 531 }
533 } 532 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698