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/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
678 sources += rebase_path( | 678 sources += rebase_path( |
679 gypi_values.chrome_browser_notifications_android_java_ui_sources, | 679 gypi_values.chrome_browser_notifications_android_java_ui_sources, |
680 ".", | 680 ".", |
681 "//chrome") | 681 "//chrome") |
682 } else { | 682 } else { |
683 sources += rebase_path( | 683 sources += rebase_path( |
684 gypi_values.chrome_browser_notifications_non_android_sources, | 684 gypi_values.chrome_browser_notifications_non_android_sources, |
685 ".", | 685 ".", |
686 "//chrome") | 686 "//chrome") |
687 } | 687 } |
688 if (is_mac) { | |
689 deps += [ "//chrome/browser/ui/cocoa/notifications:common" ] | |
690 } | |
691 } | 688 } |
692 if (enable_themes) { | 689 if (enable_themes) { |
693 sources += | 690 sources += |
694 rebase_path(gypi_values.chrome_browser_themes_sources, ".", "//chrome") | 691 rebase_path(gypi_values.chrome_browser_themes_sources, ".", "//chrome") |
695 } | 692 } |
696 | 693 |
697 if (enable_basic_printing || enable_print_preview) { | 694 if (enable_basic_printing || enable_print_preview) { |
698 # Some form of printing support. | 695 # Some form of printing support. |
699 sources += rebase_path(gypi_values.chrome_browser_printing_basic_sources, | 696 sources += rebase_path(gypi_values.chrome_browser_printing_basic_sources, |
700 ".", | 697 ".", |
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1372 # linking all of the test support. | 1369 # linking all of the test support. |
1373 source_set("pepper_cdm_test_constants") { | 1370 source_set("pepper_cdm_test_constants") { |
1374 testonly = true | 1371 testonly = true |
1375 visibility = [ "//chrome/*" ] | 1372 visibility = [ "//chrome/*" ] |
1376 sources = [ | 1373 sources = [ |
1377 "media/pepper_cdm_test_constants.cc", | 1374 "media/pepper_cdm_test_constants.cc", |
1378 "media/pepper_cdm_test_constants.h", | 1375 "media/pepper_cdm_test_constants.h", |
1379 ] | 1376 ] |
1380 } | 1377 } |
1381 } | 1378 } |
OLD | NEW |