| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 | 8 |
| 9 gypi_values = exec_script( | 9 gypi_values = exec_script( |
| 10 "//build/gypi_to_gn.py", | 10 "//build/gypi_to_gn.py", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 if (!is_ios) { | 81 if (!is_ios) { |
| 82 sources += rebase_path(gypi_values.chrome_browser_ui_non_ios_sources, | 82 sources += rebase_path(gypi_values.chrome_browser_ui_non_ios_sources, |
| 83 ".", "//chrome") | 83 ".", "//chrome") |
| 84 deps += [ | 84 deps += [ |
| 85 "//chrome/browser/devtools", | 85 "//chrome/browser/devtools", |
| 86 "//chrome/browser/performance_monitor", | 86 "//chrome/browser/performance_monitor", |
| 87 "//chrome/browser/ui/webui/omnibox:mojo_bindings", | 87 "//chrome/browser/ui/webui/omnibox:mojo_bindings", |
| 88 "//chrome/common/extensions/api:api", | 88 "//chrome/common/extensions/api:api", |
| 89 "//chrome/installer/util", | 89 "//chrome/installer/util", |
| 90 "//components/autofill/content/browser:risk_proto", | 90 "//components/autofill/content/browser:risk_proto", |
| 91 "//content/app/resources", | |
| 92 "//device/bluetooth", | 91 "//device/bluetooth", |
| 93 "//device/nfc", | 92 "//device/nfc", |
| 94 "//media", | 93 "//media", |
| 95 "//mojo/system", | 94 "//mojo/system", |
| 96 "//net:net_with_v8", | 95 "//net:net_with_v8", |
| 97 "//third_party/WebKit/public:resources", | 96 "//third_party/WebKit/public:resources", |
| 98 "//third_party/adobe/flash:flapper_version_h", | 97 "//third_party/adobe/flash:flapper_version_h", |
| 99 "//third_party/expat", | 98 "//third_party/expat", |
| 100 "//third_party/hunspell", | 99 "//third_party/hunspell", |
| 101 "//third_party/leveldatabase", | 100 "//third_party/leveldatabase", |
| 102 "//third_party/npapi", | 101 "//third_party/npapi", |
| 102 "//third_party/libjingle", |
| 103 "//third_party/re2", | 103 "//third_party/re2", |
| 104 "//ui/compositor", | 104 "//ui/compositor", |
| 105 "//ui/surface", | 105 "//ui/surface", |
| 106 "//ui/web_dialogs", | 106 "//ui/web_dialogs", |
| 107 "//v8", | 107 "//v8", |
| 108 "//webkit/browser:storage", | 108 "//webkit/browser:storage", |
| 109 "//webkit/common", | 109 "//webkit/common", |
| 110 "//webkit/common:storage", | 110 "//webkit/common:storage", |
| 111 #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP) | |
| 112 ] | 111 ] |
| 113 # TODO(GYP) | 112 # TODO(GYP) |
| 114 #'defines': [ | 113 #'defines': [ |
| 115 # '<@(nacl_defines)', | 114 # '<@(nacl_defines)', |
| 116 #], | 115 #], |
| 117 #'direct_dependent_settings': { | 116 #'direct_dependent_settings': { |
| 118 # 'defines': [ | 117 # 'defines': [ |
| 119 # '<@(nacl_defines)', | 118 # '<@(nacl_defines)', |
| 120 # ], | 119 # ], |
| 121 # }, | 120 # }, |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 script = "//chrome/tools/build/mac/generate_localizer" | 411 script = "//chrome/tools/build/mac/generate_localizer" |
| 413 sources = [ ] | 412 sources = [ ] |
| 414 table_path = "$target_gen_dir/ui_localizer_table.h" | 413 table_path = "$target_gen_dir/ui_localizer_table.h" |
| 415 outputs = [ table_path ] | 414 outputs = [ table_path ] |
| 416 args = [ rebase_path(table_path, root_build_dir) ] + | 415 args = [ rebase_path(table_path, root_build_dir) ] + |
| 417 rebase_path(nib_gypi_values.mac_translated_xibs, | 416 rebase_path(nib_gypi_values.mac_translated_xibs, |
| 418 root_build_dir, | 417 root_build_dir, |
| 419 "//chrome") | 418 "//chrome") |
| 420 } | 419 } |
| 421 } | 420 } |
| OLD | NEW |