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

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

Issue 2473543002: Set the user agent for 0.6 (Closed)
Patch Set: nits Created 4 years, 1 month 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 | blimp/client/app/android/blimp_client_session_android.cc » ('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 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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 "android/blimp_client_session_android.cc", 369 "android/blimp_client_session_android.cc",
370 "android/blimp_client_session_android.h", 370 "android/blimp_client_session_android.h",
371 "android/blimp_library_loader.cc", 371 "android/blimp_library_loader.cc",
372 "android/blimp_library_loader.h", 372 "android/blimp_library_loader.h",
373 "android/blimp_view.cc", 373 "android/blimp_view.cc",
374 "android/blimp_view.h", 374 "android/blimp_view.h",
375 "android/tab_control_feature_android.cc", 375 "android/tab_control_feature_android.cc",
376 "android/tab_control_feature_android.h", 376 "android/tab_control_feature_android.h",
377 "android/toolbar.cc", 377 "android/toolbar.cc",
378 "android/toolbar.h", 378 "android/toolbar.h",
379 "user_agent.cc",
380 "user_agent.h",
381 ] 379 ]
382 380
383 libs = [ "android" ] 381 libs = [ "android" ]
384 } 382 }
385 383
386 android_apk("blimp_apk") { 384 android_apk("blimp_apk") {
387 deps = [ 385 deps = [
388 ":blimp_java", 386 ":blimp_java",
389 "//base:base_java", 387 "//base:base_java",
390 "//blimp/client/core:core_java", 388 "//blimp/client/core:core_java",
391 "//components/safe_json/android:safe_json_java", 389 "//components/safe_json/android:safe_json_java",
392 "//net/android:net_java", 390 "//net/android:net_java",
393 ] 391 ]
394 apk_name = "Blimp" 392 apk_name = "Blimp"
395 android_manifest = blimp_apk_manifest 393 android_manifest = blimp_apk_manifest
396 android_manifest_dep = ":blimp_apk_manifest" 394 android_manifest_dep = ":blimp_apk_manifest"
397 shared_libraries = [ ":blimp_app_android" ] 395 shared_libraries = [ ":blimp_app_android" ]
398 } 396 }
399 397
400 instrumentation_test_apk("blimp_test_apk") { 398 instrumentation_test_apk("blimp_test_apk") {
401 apk_name = "BlimpTest" 399 apk_name = "BlimpTest"
402 apk_under_test = ":blimp_apk" 400 apk_under_test = ":blimp_apk"
403 android_manifest = blimp_test_apk_manifest 401 android_manifest = blimp_test_apk_manifest
404 android_manifest_dep = ":blimp_test_apk_manifest" 402 android_manifest_dep = ":blimp_test_apk_manifest"
405 deps = [ 403 deps = [
406 ":blimp_test_java", 404 ":blimp_test_java",
407 ] 405 ]
408 } 406 }
409 } 407 }
OLDNEW
« no previous file with comments | « no previous file | blimp/client/app/android/blimp_client_session_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698