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

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

Issue 1646483002: Fix //chrome/app/test_support dependency on //chrome/browser/policy:path_parser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 android_generated_java_resources = [ 9 android_generated_java_resources = [
10 "java/res/values-am/generated_resources.xml", 10 "java/res/values-am/generated_resources.xml",
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 visibility = [ "//chrome/test:test_support" ] 315 visibility = [ "//chrome/test:test_support" ]
316 316
317 sources = [ 317 sources = [
318 "chrome_main_delegate.cc", 318 "chrome_main_delegate.cc",
319 "chrome_main_delegate.h", 319 "chrome_main_delegate.h",
320 ] 320 ]
321 321
322 deps = [ 322 deps = [
323 "//base", 323 "//base",
324 "//chrome/browser", 324 "//chrome/browser",
325 "//chrome/browser/policy:path_parser",
326 "//chrome/child", 325 "//chrome/child",
327 "//chrome/common", 326 "//chrome/common",
328 "//chrome/plugin", 327 "//chrome/plugin",
329 "//chrome/renderer", 328 "//chrome/renderer",
330 "//chrome/utility", 329 "//chrome/utility",
331 "//components/crash/content/app", 330 "//components/crash/content/app",
332 "//components/crash/content/app:lib", 331 "//components/crash/content/app:lib",
333 "//components/startup_metric_utils/browser:lib", 332 "//components/startup_metric_utils/browser:lib",
334 "//content/public/app:both", 333 "//content/public/app:both",
335 "//content/public/common", 334 "//content/public/common",
(...skipping 10 matching lines...) Expand all
346 deps += [ 345 deps += [
347 "//chrome:chrome_initial", 346 "//chrome:chrome_initial",
348 "//sandbox/win:sandbox", 347 "//sandbox/win:sandbox",
349 ] 348 ]
350 } 349 }
351 350
352 if (is_chromeos) { 351 if (is_chromeos) {
353 deps += [ "//chrome/browser/chromeos" ] 352 deps += [ "//chrome/browser/chromeos" ]
354 } 353 }
355 354
355 if (enable_configuration_policy) {
356 deps += [ "//chrome/browser/policy:path_parser" ]
357 }
358
356 if (enable_pdf) { 359 if (enable_pdf) {
357 deps += [ "//pdf" ] 360 deps += [ "//pdf" ]
358 } 361 }
359 362
360 if (enable_plugins && enable_nacl) { 363 if (enable_plugins && enable_nacl) {
361 deps += [ 364 deps += [
362 "//components/nacl/browser", 365 "//components/nacl/browser",
363 "//components/nacl/renderer/plugin:nacl_trusted_plugin", 366 "//components/nacl/renderer/plugin:nacl_trusted_plugin",
364 ] 367 ]
365 } 368 }
366 } 369 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698