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

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2138973002: Initial CL for talking to the WebAPK server to generate WebAPK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into webapk_builder_impl2 Created 4 years, 4 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 ".", 767 ".",
768 "//chrome") 768 "//chrome")
769 sources += rebase_path(gypi_values.chrome_browser_offline_pages_sources, 769 sources += rebase_path(gypi_values.chrome_browser_offline_pages_sources,
770 ".", 770 ".",
771 "//chrome") 771 "//chrome")
772 deps += [ 772 deps += [
773 ":client_discourse_context_proto", 773 ":client_discourse_context_proto",
774 ":delta_file_proto", 774 ":delta_file_proto",
775 ":jni_headers", 775 ":jni_headers",
776 "//blimp/client/public", 776 "//blimp/client/public",
777 "//chrome/browser/android/webapk:proto",
777 "//components/data_usage/android", 778 "//components/data_usage/android",
778 "//components/precache/content", 779 "//components/precache/content",
779 "//components/precache/core", 780 "//components/precache/core",
780 "//components/resources:components_resources", 781 "//components/resources:components_resources",
781 "//components/toolbar", 782 "//components/toolbar",
782 "//components/web_contents_delegate_android", 783 "//components/web_contents_delegate_android",
784 "//third_party/smhasher:murmurhash2",
783 ] 785 ]
784 } 786 }
785 787
786 if (is_android) { 788 if (is_android) {
787 deps += [ 789 deps += [
788 "//components/cdm/browser", 790 "//components/cdm/browser",
789 "//components/resources:components_resources", 791 "//components/resources:components_resources",
790 "//third_party/android_opengl/etc1", 792 "//third_party/android_opengl/etc1",
791 "//third_party/android_tools:cpu_features", 793 "//third_party/android_tools:cpu_features",
792 "//third_party/libaddressinput:util", 794 "//third_party/libaddressinput:util",
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
1375 # linking all of the test support. 1377 # linking all of the test support.
1376 static_library("pepper_cdm_test_constants") { 1378 static_library("pepper_cdm_test_constants") {
1377 testonly = true 1379 testonly = true
1378 visibility = [ "//chrome/*" ] 1380 visibility = [ "//chrome/*" ]
1379 sources = [ 1381 sources = [
1380 "media/pepper_cdm_test_constants.cc", 1382 "media/pepper_cdm_test_constants.cc",
1381 "media/pepper_cdm_test_constants.h", 1383 "media/pepper_cdm_test_constants.h",
1382 ] 1384 ]
1383 } 1385 }
1384 } 1386 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698