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

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 1538803002: Migrates battery_status from content/renderer/ to WebKit/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Synced. 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 | « third_party/WebKit/Source/modules/modules.gypi ('k') | third_party/WebKit/Source/platform/DEPS » ('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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 7 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
8 import("//third_party/WebKit/Source/config.gni") 8 import("//third_party/WebKit/Source/config.gni")
9 import("//third_party/WebKit/Source/platform/platform.gni") 9 import("//third_party/WebKit/Source/platform/platform.gni")
10 import("//third_party/WebKit/Source/platform/platform_generated.gni") 10 import("//third_party/WebKit/Source/platform/platform_generated.gni")
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 "//third_party/WebKit/Source/wtf", 328 "//third_party/WebKit/Source/wtf",
329 "//third_party/iccjpeg", 329 "//third_party/iccjpeg",
330 "//third_party/libpng", 330 "//third_party/libpng",
331 "//third_party/libwebp", 331 "//third_party/libwebp",
332 "//third_party/ots", 332 "//third_party/ots",
333 "//third_party/qcms", 333 "//third_party/qcms",
334 "//url", 334 "//url",
335 "//v8", 335 "//v8",
336 ] 336 ]
337 deps = [ 337 deps = [
338 "//device/battery:mojo_bindings",
339 "//mojo/public/c/system:for_component",
338 "//third_party/WebKit/Source/platform/heap", 340 "//third_party/WebKit/Source/platform/heap",
339 "//third_party/harfbuzz-ng", 341 "//third_party/harfbuzz-ng",
340 "//third_party/icu", 342 "//third_party/icu",
341 "//ui/gfx", 343 "//ui/gfx",
342 "//ui/gfx/geometry", 344 "//ui/gfx/geometry",
343 ] 345 ]
344 346
345 if (is_mac) { 347 if (is_mac) {
346 sources -= [ 348 sources -= [
347 # Uses KillRingMac.mm instead. 349 # Uses KillRingMac.mm instead.
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 "//third_party/WebKit/Source:config", 454 "//third_party/WebKit/Source:config",
453 "//third_party/WebKit/Source:inside_blink", 455 "//third_party/WebKit/Source:inside_blink",
454 "//third_party/WebKit/Source:non_test_config", 456 "//third_party/WebKit/Source:non_test_config",
455 ] 457 ]
456 458
457 public_deps = [ 459 public_deps = [
458 ":platform", 460 ":platform",
459 "//testing/gmock", 461 "//testing/gmock",
460 ] 462 ]
461 463
464 deps = [
465 "//device/battery",
466 "//device/battery:mojo_bindings",
467 "//mojo/edk/system",
468 ]
469 if (is_android) {
470 deps -= [ "//device/battery" ]
471 }
472
462 if (is_win) { 473 if (is_win) {
463 cflags = [ "/wd4267" ] # Truncation from size_t to int. 474 cflags = [ "/wd4267" ] # Truncation from size_t to int.
464 } 475 }
465 } 476 }
466 477
467 # GYP: blink_heap_unittests 478 # GYP: blink_heap_unittests
468 test("blink_heap_unittests") { 479 test("blink_heap_unittests") {
469 visibility = [] # Allow re-assignment of list. 480 visibility = [] # Allow re-assignment of list.
470 visibility = [ "*" ] 481 visibility = [ "*" ]
471 482
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 537
527 deps = [ 538 deps = [
528 ":blink_common", 539 ":blink_common",
529 ":platform", 540 ":platform",
530 ":test_support", 541 ":test_support",
531 "//base", 542 "//base",
532 "//base/test:test_support", 543 "//base/test:test_support",
533 "//cc", 544 "//cc",
534 "//cc:test_support", 545 "//cc:test_support",
535 "//cc/blink", 546 "//cc/blink",
547 "//mojo/edk/embedder:headers",
548 "//mojo/edk/test:test_support",
536 "//skia", 549 "//skia",
537 "//testing/gmock", 550 "//testing/gmock",
538 "//testing/gtest", 551 "//testing/gtest",
539 "//third_party/WebKit/Source/wtf", 552 "//third_party/WebKit/Source/wtf",
540 "//third_party/WebKit/Source/wtf:test_support", 553 "//third_party/WebKit/Source/wtf:test_support",
541 "//third_party/harfbuzz-ng", 554 "//third_party/harfbuzz-ng",
542 "//ui/gfx", 555 "//ui/gfx",
543 "//ui/gfx/geometry", 556 "//ui/gfx/geometry",
544 "//url", 557 "//url",
545 ] 558 ]
(...skipping 25 matching lines...) Expand all
571 } 584 }
572 585
573 if (current_cpu == "x86" || current_cpu == "x64") { 586 if (current_cpu == "x86" || current_cpu == "x64") {
574 source_set("blink_x86_sse") { 587 source_set("blink_x86_sse") {
575 sources = blink_platform_sse_files 588 sources = blink_platform_sse_files
576 deps = [ 589 deps = [
577 ":blink_common", 590 ":blink_common",
578 ] 591 ]
579 } 592 }
580 } 593 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/modules.gypi ('k') | third_party/WebKit/Source/platform/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698