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

Side by Side Diff: extensions/shell/BUILD.gn

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: Rebase Created 3 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
« no previous file with comments | « content/shell/BUILD.gn ('k') | gin/isolate_holder.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 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/util/process_version.gni") 7 import("//build/util/process_version.gni")
8 import("//extensions/features/features.gni") 8 import("//extensions/features/features.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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 "//chrome/VERSION", 329 "//chrome/VERSION",
330 ] 330 ]
331 output = "$target_gen_dir/common/version.h" 331 output = "$target_gen_dir/common/version.h"
332 } 332 }
333 333
334 if (is_mac) { 334 if (is_mac) {
335 bundle_data("app_shell_framework_resources") { 335 bundle_data("app_shell_framework_resources") {
336 sources = [ 336 sources = [
337 "$root_gen_dir/extensions/shell/app_shell_resources.pak", 337 "$root_gen_dir/extensions/shell/app_shell_resources.pak",
338 "$root_out_dir/extensions_shell_and_test.pak", 338 "$root_out_dir/extensions_shell_and_test.pak",
339 "$root_out_dir/v8_context_snapshot.bin",
339 ] 340 ]
340 public_deps = [ 341 public_deps = [
341 ":resources_grit", 342 ":resources_grit",
342 "//extensions:shell_and_test_pak", 343 "//extensions:shell_and_test_pak",
344 "//tools/v8_context_snapshot:v8_context_snapshot",
343 ] 345 ]
344 if (icu_use_data_file) { 346 if (icu_use_data_file) {
345 sources += [ "$root_out_dir/icudtl.dat" ] 347 sources += [ "$root_out_dir/icudtl.dat" ]
346 public_deps += [ "//third_party/icu:icudata" ] 348 public_deps += [ "//third_party/icu:icudata" ]
347 } 349 }
348 if (v8_use_external_startup_data) { 350 if (v8_use_external_startup_data) {
349 sources += [ 351 sources += [
350 "$root_out_dir/natives_blob.bin", 352 "$root_out_dir/natives_blob.bin",
351 "$root_out_dir/snapshot_blob.bin", 353 "$root_out_dir/snapshot_blob.bin",
352 ] 354 ]
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 "//extensions/browser", 459 "//extensions/browser",
458 ] 460 ]
459 461
460 if (is_chromeos) { 462 if (is_chromeos) {
461 deps += [ 463 deps += [
462 "//chromeos:test_support", 464 "//chromeos:test_support",
463 "//components/keyed_service/content", 465 "//components/keyed_service/content",
464 ] 466 ]
465 } 467 }
466 } 468 }
OLDNEW
« no previous file with comments | « content/shell/BUILD.gn ('k') | gin/isolate_holder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698