| 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 # TODO(rockot) bug 505926: Don't include chrome files from here. | 5 # TODO(rockot) bug 505926: Don't include chrome files from here. |
| 6 # See chrome_browser_tests_extensions_sources below | 6 # See chrome_browser_tests_extensions_sources below |
| 7 import("//chrome/chrome_tests.gni") | 7 import("//chrome/chrome_tests.gni") |
| 8 import("//extensions/extensions.gni") | 8 import("//extensions/extensions.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "//components/prefs:test_support", | 86 "//components/prefs:test_support", |
| 87 "//content/public/common", | 87 "//content/public/common", |
| 88 "//content/test:test_support", | 88 "//content/test:test_support", |
| 89 "//extensions/browser", | 89 "//extensions/browser", |
| 90 "//extensions/common", | 90 "//extensions/common", |
| 91 "//extensions/common/api", | 91 "//extensions/common/api", |
| 92 "//extensions/common/api:api_registration", | 92 "//extensions/common/api:api_registration", |
| 93 "//net:test_support", | 93 "//net:test_support", |
| 94 "//testing/gmock", | 94 "//testing/gmock", |
| 95 "//testing/gtest", | 95 "//testing/gtest", |
| 96 "//third_party/cld_2:cld2_static", |
| 96 ] | 97 ] |
| 97 | 98 |
| 98 public_deps = [ | 99 public_deps = [ |
| 99 "//content/public/browser", | 100 "//content/public/browser", |
| 100 "//extensions/common/api/cast_channel:cast_channel_proto", | 101 "//extensions/common/api/cast_channel:cast_channel_proto", |
| 101 ] | 102 ] |
| 102 | |
| 103 if (cld_version == 2) { | |
| 104 deps += [ "//third_party/cld_2:cld2_static" ] | |
| 105 } | |
| 106 } | 103 } |
| 107 | 104 |
| 108 # GYP version: //extensions/extensions.gyp:extensions_shell_and_test_pak | 105 # GYP version: //extensions/extensions.gyp:extensions_shell_and_test_pak |
| 109 repack("shell_and_test_pak") { | 106 repack("shell_and_test_pak") { |
| 110 sources = [ | 107 sources = [ |
| 111 "$root_gen_dir/blink/devtools_resources.pak", | 108 "$root_gen_dir/blink/devtools_resources.pak", |
| 112 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak"
, | 109 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak"
, |
| 113 "$root_gen_dir/blink/public/resources/blink_resources.pak", | 110 "$root_gen_dir/blink/public/resources/blink_resources.pak", |
| 114 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", | 111 "$root_gen_dir/content/app/strings/content_strings_en-US.pak", |
| 115 "$root_gen_dir/content/content_resources.pak", | 112 "$root_gen_dir/content/content_resources.pak", |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 "//testing/gtest", | 367 "//testing/gtest", |
| 371 "//third_party/hunspell", | 368 "//third_party/hunspell", |
| 372 "//third_party/icu", | 369 "//third_party/icu", |
| 373 "//third_party/libpng", | 370 "//third_party/libpng", |
| 374 "//third_party/zlib", | 371 "//third_party/zlib", |
| 375 "//ui/base:test_support", | 372 "//ui/base:test_support", |
| 376 "//ui/resources:ui_test_pak", | 373 "//ui/resources:ui_test_pak", |
| 377 "//ui/web_dialogs:test_support", | 374 "//ui/web_dialogs:test_support", |
| 378 ] | 375 ] |
| 379 } | 376 } |
| OLD | NEW |