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

Side by Side Diff: blimp/client/core/settings/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 | « blimp/client/app/user_agent.cc ('k') | blimp/client/core/settings/settings.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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni") 7 import("//build/config/android/rules.gni")
8 } 8 }
9 9
10 source_set("settings") { 10 source_set("settings") {
11 visibility = [ 11 visibility = [
12 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964. 12 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964.
13 "//blimp/client/core/*", 13 "//blimp/client/core/*",
14 ] 14 ]
15 15
16 sources = [ 16 sources = [
17 "blimp_settings_delegate.h", 17 "blimp_settings_delegate.h",
18 "settings.cc", 18 "settings.cc",
19 "settings.h", 19 "settings.h",
20 "settings_feature.cc", 20 "settings_feature.cc",
21 "settings_feature.h", 21 "settings_feature.h",
22 "settings_observer.h", 22 "settings_observer.h",
23 "settings_prefs.cc", 23 "settings_prefs.cc",
24 "settings_prefs.h", 24 "settings_prefs.h",
25 "user_agent.cc",
26 "user_agent.h",
25 ] 27 ]
26 28
27 deps = [ 29 deps = [
28 "//blimp/client/core/switches", 30 "//blimp/client/core/switches",
29 "//blimp/common", 31 "//blimp/common",
30 "//components/prefs", 32 "//components/prefs",
31 "//net", 33 "//net",
32 ] 34 ]
33 35
34 public_deps = [ 36 public_deps = [
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 generate_jni("settings_jni_headers") { 98 generate_jni("settings_jni_headers") {
97 visibility = [ ":*" ] 99 visibility = [ ":*" ]
98 100
99 sources = [ 101 sources = [
100 "android/java/src/org/chromium/blimp/core/settings/AboutBlimpPreferences.j ava", 102 "android/java/src/org/chromium/blimp/core/settings/AboutBlimpPreferences.j ava",
101 ] 103 ]
102 104
103 jni_package = "blimp/client/core/settings" 105 jni_package = "blimp/client/core/settings"
104 } 106 }
105 } 107 }
OLDNEW
« no previous file with comments | « blimp/client/app/user_agent.cc ('k') | blimp/client/core/settings/settings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698