| OLD | NEW |
| 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/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//components/policy/resources/policy_templates.gni") | 7 import("//components/policy/resources/policy_templates.gni") |
| 8 import("//third_party/protobuf/proto_library.gni") | 8 import("//third_party/protobuf/proto_library.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 | 10 |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 "core/common/cloud/mock_user_cloud_policy_store.h", | 269 "core/common/cloud/mock_user_cloud_policy_store.h", |
| 270 ] | 270 ] |
| 271 } | 271 } |
| 272 | 272 |
| 273 public_deps = [ | 273 public_deps = [ |
| 274 ":policy", | 274 ":policy", |
| 275 ":policy_component", | 275 ":policy_component", |
| 276 ":test_support", | 276 ":test_support", |
| 277 "//base", | 277 "//base", |
| 278 "//components/policy/proto", | 278 "//components/policy/proto", |
| 279 "//components/prefs", |
| 279 "//crypto", | 280 "//crypto", |
| 280 "//net", | 281 "//net", |
| 281 "//testing/gmock", | 282 "//testing/gmock", |
| 282 "//testing/gtest", | 283 "//testing/gtest", |
| 283 ] | 284 ] |
| 284 } | 285 } |
| 285 | 286 |
| 286 if (is_android) { | 287 if (is_android) { |
| 287 import("//build/config/android/rules.gni") | 288 import("//build/config/android/rules.gni") |
| 288 import("//build/config/zip.gni") | 289 import("//build/config/zip.gni") |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 | 331 |
| 331 group("app_restrictions_resources") { | 332 group("app_restrictions_resources") { |
| 332 deps = [ | 333 deps = [ |
| 333 ":$build_config_target_name", | 334 ":$build_config_target_name", |
| 334 ":$zip_target_name", | 335 ":$zip_target_name", |
| 335 ] | 336 ] |
| 336 } | 337 } |
| 337 } | 338 } |
| 338 } | 339 } |
| 339 #TODO(GYP) chrome_manifest_bundle | 340 #TODO(GYP) chrome_manifest_bundle |
| OLD | NEW |